Skip to content

Commit 9a398b3

Browse files
committed
working
1 parent 6595556 commit 9a398b3

File tree

1 file changed

+58
-33
lines changed

1 file changed

+58
-33
lines changed

pom.xml

Lines changed: 58 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -11,37 +11,41 @@
1111
<version>2.1.3.RELEASE</version>
1212
<relativePath /> <!-- lookup parent from repository -->
1313
</parent>
14+
1415
<name>simpleworklist</name>
1516
<description>Your Todo-List for Getting Things Done</description>
1617
<url>http://homepage.ruhr-uni-bochum.de/Thomas.Woehlke/p/simpleworklist</url>
18+
<inceptionYear>2012</inceptionYear>
19+
1720
<organization>
18-
<name>Thomas Woehlke</name>
19-
<url>http://homepage.ruhr-uni-bochum.de/Thomas.Woehlke/</url>
21+
<name>Spring-Framework-Java-Apps</name>
22+
<url>https://github.com/Spring-Framework-Java-Apps/</url>
2023
</organization>
21-
<inceptionYear>2012</inceptionYear>
24+
<developers>
25+
<developer>
26+
<name>Thomas Wöhlke</name>
27+
<email>github@woehlke.org</email>
28+
<url>https://github.com/thomaswoehlke/</url>
29+
</developer>
30+
</developers>
31+
2232
<scm>
23-
<url>https://ThomasWoehlke@bitbucket.org/ThomasWoehlke/simpleworklist.git</url>
24-
<connection>scm:git:https://ThomasWoehlke@bitbucket.org/ThomasWoehlke/simpleworklist.git</connection>
25-
<developerConnection>scm:git:https://ThomasWoehlke@bitbucket.org/ThomasWoehlke/simpleworklist.git</developerConnection>
33+
<url>https://github.com/Spring-Framework-Java-Apps/simpleworklist.git</url>
34+
<connection>scm:git:git@github.com:Spring-Framework-Java-Apps/simpleworklist.git</connection>
35+
<developerConnection>scm:git:git@github.com:Spring-Framework-Java-Apps/simpleworklist.git</developerConnection>
2636
<tag>HEAD</tag>
2737
</scm>
2838
<issueManagement>
29-
<system>bitbucket</system>
30-
<url>https://bitbucket.org/ThomasWoehlke/simpleworklist/issues</url>
39+
<system>Github</system>
40+
<url>https://github.com/Spring-Framework-Java-Apps/simpleworklist/issues</url>
3141
</issueManagement>
3242
<distributionManagement>
3343
<site>
3444
<id>simpleworklist.frodo.fritz.box</id>
3545
<url>file://C:/xampp/x64-7.1.26-0-VC14/htdocs/p/simpleworklist</url>
3646
</site>
3747
</distributionManagement>
38-
<developers>
39-
<developer>
40-
<name>Thomas Wöhlke</name>
41-
<email>thomas.woehlke@rub.de</email>
42-
<url>http://homepage.ruhr-uni-bochum.de/Thomas.Woehlke/</url>
43-
</developer>
44-
</developers>
48+
4549

4650
<properties>
4751
<java.version>1.8</java.version>
@@ -60,6 +64,25 @@
6064
<start-class>org.woehlke.simpleworklist.SimpleworklistApplication</start-class>
6165
</properties>
6266

67+
<dependencyManagement>
68+
<dependencies>
69+
<dependency>
70+
<groupId>de.codecentric</groupId>
71+
<artifactId>spring-boot-admin-dependencies</artifactId>
72+
<version>${spring-boot-admin.version}</version>
73+
<type>pom</type>
74+
<scope>import</scope>
75+
</dependency>
76+
<dependency>
77+
<groupId>org.springframework.session</groupId>
78+
<artifactId>spring-session-bom</artifactId>
79+
<version>Bean-RELEASE</version>
80+
<type>pom</type>
81+
<scope>import</scope>
82+
</dependency>
83+
</dependencies>
84+
</dependencyManagement>
85+
6386
<dependencies>
6487
<!--
6588
<dependency>
@@ -279,6 +302,7 @@
279302
<version>${maven.scm.version}</version>
280303
<scope>provided</scope>
281304
</dependency>
305+
282306
<dependency>
283307
<groupId>org.springframework.session</groupId>
284308
<artifactId>spring-session-jdbc</artifactId>
@@ -328,24 +352,7 @@
328352
-->
329353
</dependencies>
330354

331-
<dependencyManagement>
332-
<dependencies>
333-
<dependency>
334-
<groupId>de.codecentric</groupId>
335-
<artifactId>spring-boot-admin-dependencies</artifactId>
336-
<version>${spring-boot-admin.version}</version>
337-
<type>pom</type>
338-
<scope>import</scope>
339-
</dependency>
340-
<dependency>
341-
<groupId>org.springframework.session</groupId>
342-
<artifactId>spring-session-bom</artifactId>
343-
<version>Bean-RELEASE</version>
344-
<type>pom</type>
345-
<scope>import</scope>
346-
</dependency>
347-
</dependencies>
348-
</dependencyManagement>
355+
349356

350357

351358
<build>
@@ -514,6 +521,9 @@
514521
<build>
515522
<finalName>simpleworklist</finalName>
516523
<defaultGoal>clean spring-boot:run</defaultGoal>
524+
<pluginManagement>
525+
<plugins></plugins>
526+
</pluginManagement>
517527
<plugins>
518528
<plugin>
519529
<groupId>org.springframework.boot</groupId>
@@ -595,9 +605,13 @@
595605
</plugins>
596606
</build>
597607
</profile>
608+
598609
<profile>
599610
<id>testing</id>
600611
<build>
612+
<pluginManagement>
613+
<plugins></plugins>
614+
</pluginManagement>
601615
<plugins>
602616
<plugin>
603617
<groupId>org.springframework.boot</groupId>
@@ -641,9 +655,13 @@
641655
</plugins>
642656
</build>
643657
</profile>
658+
644659
<profile>
645660
<id>qa</id>
646661
<build>
662+
<pluginManagement>
663+
<plugins></plugins>
664+
</pluginManagement>
647665
<plugins>
648666
<plugin>
649667
<groupId>org.springframework.boot</groupId>
@@ -700,6 +718,7 @@
700718
</plugins>
701719
</build>
702720
</profile>
721+
703722
<profile>
704723
<id>developing</id>
705724
<build>
@@ -774,9 +793,14 @@
774793
</plugins>
775794
</build>
776795
</profile>
796+
797+
777798
<profile>
778799
<id>travis</id>
779800
<build>
801+
<pluginManagement>
802+
<plugins></plugins>
803+
</pluginManagement>
780804
<plugins>
781805
<plugin>
782806
<groupId>org.springframework.boot</groupId>
@@ -829,6 +853,7 @@
829853
</plugins>
830854
</build>
831855
</profile>
856+
832857
<profile>
833858
<id>heroku</id>
834859
<build>

0 commit comments

Comments
 (0)