Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BudgetMaster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Robert Goldmann
BudgetMaster
Commits
76437991
Commit
76437991
authored
6 years ago
by
Robert Goldmann
Browse files
Options
Downloads
Patches
Plain Diff
#376 - added dependency, extended main
parent
5655625c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#342
passed
6 years ago
Stage: build
Stage: test
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+7
-2
7 additions, 2 deletions
pom.xml
src/main/java/de/deadlocker8/budgetmaster/Main.java
+2
-1
2 additions, 1 deletion
src/main/java/de/deadlocker8/budgetmaster/Main.java
with
9 additions
and
3 deletions
pom.xml
+
7
−
2
View file @
76437991
...
...
@@ -6,7 +6,7 @@
<groupId>
de.deadlocker8
</groupId>
<artifactId>
BudgetMaster
</artifactId>
<version>
2.0.
0
</version>
<version>
2.0.
1
</version>
<name>
BudgetMaster
</name>
<repositories>
...
...
@@ -61,7 +61,7 @@
<app.versionDate>
${maven.build.timestamp}
</app.versionDate>
<maven.build.timestamp.format>
dd.MM.yy
</maven.build.timestamp.format>
<app.versionCode>
1
4
</app.versionCode>
<app.versionCode>
1
5
</app.versionCode>
<app.author>
Robert Goldmann
</app.author>
<project.outputDirectory>
build/${project.version}
</project.outputDirectory>
...
...
@@ -96,6 +96,11 @@
<artifactId>
spring-boot-starter-data-jpa
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-tomcat
</artifactId>
</dependency>
<dependency>
<groupId>
joda-time
</groupId>
<artifactId>
joda-time
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
src/main/java/de/deadlocker8/budgetmaster/Main.java
+
2
−
1
View file @
76437991
...
...
@@ -9,6 +9,7 @@ import org.springframework.boot.ApplicationArguments;
import
org.springframework.boot.ApplicationRunner
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
import
org.springframework.boot.web.support.SpringBootServletInitializer
;
import
org.springframework.scheduling.annotation.EnableScheduling
;
import
java.io.IOException
;
...
...
@@ -21,7 +22,7 @@ import java.util.Locale;
@EnableScheduling
@SpringBootApplication
public
class
Main
implements
ApplicationRunner
public
class
Main
extends
SpringBootServletInitializer
implements
ApplicationRunner
{
private
final
static
Logger
LOGGER
=
LoggerFactory
.
getLogger
(
Main
.
class
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment