Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LabraCORE
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Labrador
LabraCORE
Merge requests
!1
Labracore 0.1 Security + Versioning
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Labracore 0.1 Security + Versioning
labracore-0_1-dev
into
development
Overview
1
Commits
5
Pipelines
20
Changes
20
Merged
Labracore 0.1 Security + Versioning
Chris Lemaire
requested to merge
labracore-0_1-dev
into
development
Mar 5, 2020
Overview
1
Commits
5
Pipelines
20
Changes
20
0
0
Merge request reports
Compare
development
version 12
e4c45428
Apr 14, 2020
version 11
e04bf2f5
Apr 13, 2020
version 10
bac61640
Mar 11, 2020
version 9
01b2fe81
Mar 11, 2020
version 8
950912ce
Mar 11, 2020
version 7
4a78f5fa
Mar 11, 2020
version 6
e6df6aae
Mar 11, 2020
version 5
2caff624
Mar 11, 2020
version 4
b6058c8d
Mar 8, 2020
version 3
d976c313
Mar 8, 2020
version 2
439562e1
Mar 5, 2020
version 1
0cb6add6
Mar 5, 2020
development (base)
and
latest version
latest version
877bb2c8
5 commits,
Apr 14, 2020
version 12
e4c45428
5 commits,
Apr 14, 2020
version 11
e04bf2f5
4 commits,
Apr 13, 2020
version 10
bac61640
4 commits,
Mar 11, 2020
version 9
01b2fe81
4 commits,
Mar 11, 2020
version 8
950912ce
4 commits,
Mar 11, 2020
version 7
4a78f5fa
4 commits,
Mar 11, 2020
version 6
e6df6aae
4 commits,
Mar 11, 2020
version 5
2caff624
4 commits,
Mar 11, 2020
version 4
b6058c8d
4 commits,
Mar 8, 2020
version 3
d976c313
4 commits,
Mar 8, 2020
version 2
439562e1
3 commits,
Mar 5, 2020
version 1
0cb6add6
2 commits,
Mar 5, 2020
20 files
+
2002
−
210
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
20
src/main/java/nl/tudelft/labracore/config/TransactionConfiguration.java
0 → 100644
+
26
−
0
View file @ 877bb2c8
Edit in single-file editor
Open in Web IDE
/*
* Labracore - A connecting core service for Labrador products
* Copyright (C) 2020- Delft University of Technology
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package
nl.tudelft.labracore.config
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.transaction.annotation.EnableTransactionManagement
;
@Configuration
@EnableTransactionManagement
public
class
TransactionConfiguration
{
}
Loading