|
22 | 22 |
|
23 | 23 | <name>simpleworklist</name> |
24 | 24 | <description>Your Todo-List for Getting Things Done</description> |
25 | | - <url>https://woehlke.org/java/simpleworklist</url> |
| 25 | + <url>https://homepage.ruhr-uni-bochum.de/Thomas.Woehlke/java/simpleworklist</url> |
26 | 26 | <inceptionYear>2012</inceptionYear> |
27 | 27 |
|
28 | 28 | <organization> |
|
68 | 68 |
|
69 | 69 | <properties> |
70 | 70 | <java.version>15</java.version> |
71 | | - <version.maven>3.6.2</version.maven> |
| 71 | + <version.maven>3.6.3</version.maven> |
72 | 72 | <pmdVersion>6.28.0</pmdVersion> |
73 | 73 |
|
74 | 74 | <!-- SCM and Releasing with Maven --> |
|
159 | 159 | <name>Spring Lib M Repository</name> |
160 | 160 | <url>https://repo.spring.io/libs-milestone/</url> |
161 | 161 | </repository> |
| 162 | + <repository> |
| 163 | + <id>apache-releases</id> |
| 164 | + <name>Apache Releases</name> |
| 165 | + <url>https://repository.apache.org/content/repositories/releases/</url> |
| 166 | + </repository> |
162 | 167 | <repository> |
163 | 168 | <id>atlassian-public</id> |
164 | 169 | <name>Atlassian Repository</name> |
|
229 | 234 | <id>spring-milestones</id> |
230 | 235 | <url>https://repo.spring.io/milestone</url> |
231 | 236 | </pluginRepository> |
| 237 | + <pluginRepository> |
| 238 | + <id>apache-releases</id> |
| 239 | + <name>Apache Releases</name> |
| 240 | + <url>https://repository.apache.org/content/repositories/releases/</url> |
| 241 | + </pluginRepository> |
232 | 242 | <pluginRepository> |
233 | 243 | <id>atlassian-public</id> |
234 | 244 | <name>Atlassian Repository</name> |
|
277 | 287 | <type>pom</type> |
278 | 288 | <scope>import</scope> |
279 | 289 | </dependency> |
| 290 | + <dependency> |
| 291 | + <groupId>org.springframework.security</groupId> |
| 292 | + <artifactId>spring-security-bom</artifactId> |
| 293 | + <version>${spring-security.version}</version> |
| 294 | + <type>pom</type> |
| 295 | + <scope>import</scope> |
| 296 | + </dependency> |
280 | 297 | <!-- webjars --> |
281 | 298 | <dependency> |
282 | 299 | <groupId>org.webjars</groupId> |
|
509 | 526 | <groupId>org.springframework.boot</groupId> |
510 | 527 | <artifactId>spring-boot-starter-security</artifactId> |
511 | 528 | </dependency> |
| 529 | + <dependency> |
| 530 | + <groupId>org.springframework.boot</groupId> |
| 531 | + <artifactId>spring-boot-starter-logging</artifactId> |
| 532 | + </dependency> |
512 | 533 | <dependency> |
513 | 534 | <groupId>org.springframework.security</groupId> |
514 | 535 | <artifactId>spring-security-core</artifactId> |
|
531 | 552 | <groupId>org.springframework.security</groupId> |
532 | 553 | <artifactId>spring-security-data</artifactId> |
533 | 554 | </dependency> |
534 | | - |
| 555 | + <dependency> |
| 556 | + <groupId>org.joinfaces</groupId> |
| 557 | + <artifactId>security-spring-boot-starter</artifactId> |
| 558 | + </dependency> |
535 | 559 | <dependency> |
536 | 560 | <groupId>org.postgresql</groupId> |
537 | 561 | <artifactId>postgresql</artifactId> |
|
546 | 570 | <groupId>org.projectlombok</groupId> |
547 | 571 | <artifactId>lombok</artifactId> |
548 | 572 | <optional>false</optional> |
| 573 | + <scope>provided</scope> |
549 | 574 | </dependency> |
550 | 575 | <dependency> |
551 | 576 | <groupId>org.webjars</groupId> |
|
971 | 996 | <overWriteSnapshots>true</overWriteSnapshots> |
972 | 997 | <outputFile>${project.build.outputDirectory}/classes/</outputFile> |
973 | 998 | <excludeTypes>pom,maven-plugin</excludeTypes> |
974 | | - <excludeGroupIds>antlr,org.beanshell,org.apache.maven.plugins,org.apache.maven.scm</excludeGroupIds> |
| 999 | + <excludeGroupIds>antlr,org.beanshell,org.apache.maven.plugins,org.apache.maven.scm,org.jruby</excludeGroupIds> |
975 | 1000 | <excludeArtifactIds>weld-probe-core,antlr,bsh,velocity-tools,liquibase-core,jruby-complete</excludeArtifactIds> |
976 | 1001 | </configuration> |
977 | 1002 | </execution> |
|
990 | 1015 | <overWriteSnapshots>true</overWriteSnapshots> |
991 | 1016 | <outputFile>${project.build.outputDirectory}/classes/</outputFile> |
992 | 1017 | <excludeTypes>pom,maven-plugin</excludeTypes> |
993 | | - <excludeGroupIds>antlr,org.beanshell,org.apache.maven.plugins,org.apache.maven.scm</excludeGroupIds> |
994 | | - <excludeArtifactIds>weld-probe-core,antlr,bsh,velocity-tools,liquibase-core,jruby-complete</excludeArtifactIds> |
| 1018 | + <excludeGroupIds>antlr,org.beanshell,org.apache.maven.plugins,org.apache.maven.scm,org.jruby</excludeGroupIds> |
| 1019 | + <excludeArtifactIds>weld-probe-core,antlr,bsh,velocity-tools,liquibase-core,jruby-complete,cdi-api</excludeArtifactIds> |
995 | 1020 | </configuration> |
996 | 1021 | </execution> |
997 | 1022 | <execution> |
|
1016 | 1041 | <failOnWarning>false</failOnWarning> |
1017 | 1042 | <ignoreNonCompile>true</ignoreNonCompile> |
1018 | 1043 | <excludeTypes>pom</excludeTypes> |
1019 | | - <excludeGroupIds>org.webjars,antlr,org.beanshell,org.apache.maven.plugins,org.apache.maven.scm</excludeGroupIds> |
1020 | | - <excludeArtifactIds>weld-probe-core,antlr,bsh,velocity-tools,liquibase-core,jruby-complete</excludeArtifactIds> |
| 1044 | + <excludeGroupIds>org.webjars,antlr,org.beanshell,org.apache.maven.plugins,org.apache.maven.scm,org.jruby</excludeGroupIds> |
| 1045 | + <excludeArtifactIds>weld-probe-core,antlr,bsh,velocity-tools,liquibase-core,jruby-complete,cdi-api</excludeArtifactIds> |
1021 | 1046 | <ignoredDependencies> |
1022 | 1047 | <ignoredDependency>org.apache.maven.plugins:maven-surefire-plugin</ignoredDependency> |
1023 | | - <!-- |
1024 | | - <ignoredDependency>org.apache.maven.scm:maven-scm</ignoredDependency> |
1025 | | - <ignoredDependency>org.apache.maven.scm:maven-scm-providers-git</ignoredDependency> |
1026 | | - <ignoredDependency>org.apache.maven.scm:maven-scm-providers-standard</ignoredDependency> |
1027 | | - <ignoredDependency>org.apache.maven.scm:maven-scm-providers</ignoredDependency> |
1028 | | - <ignoredDependency>org.apache.maven.scm:maven-scm-managers</ignoredDependency> |
1029 | | - --> |
1030 | 1048 | </ignoredDependencies> |
1031 | 1049 | <ignoredUsedUndeclaredDependencies> |
1032 | 1050 | <ignoredUsedUndeclaredDependency>org.apache.maven.plugins:maven-surefire-plugin</ignoredUsedUndeclaredDependency> |
|
1067 | 1085 | <phase>site</phase> |
1068 | 1086 | <configuration> |
1069 | 1087 | <excludeGroupIds>org.webjars</excludeGroupIds> |
1070 | | - <excludeGroupIds>org.webjars,org.jclouds,org.jboss.as,xml-resolver,commons-configuration,org.codehaus.plexus,commons-digester,junit,log4j,io.openliberty.features,antlr,org.beanshell,org.apache.maven.plugins,org.apache.maven.scm</excludeGroupIds> |
1071 | | - <excludeArtifactIds>weld-probe-core,commons-configuration,jdk.tools,maven-antrun-plugin,antlr,bsh,velocity-tools,liquibase-core,jruby-complete</excludeArtifactIds> |
| 1088 | + <excludeGroupIds>org.webjars,org.jclouds,org.jboss.as,xml-resolver,commons-configuration,org.codehaus.plexus,commons-digester,junit,log4j,io.openliberty.features,antlr,org.beanshell,org.apache.maven.plugins,org.apache.maven.scm,org.jruby</excludeGroupIds> |
| 1089 | + <excludeArtifactIds>weld-probe-core,commons-configuration,jdk.tools,maven-antrun-plugin,antlr,bsh,velocity-tools,liquibase-core,jruby-complete,cdi-api</excludeArtifactIds> |
1072 | 1090 | <failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact> |
1073 | 1091 | <reportSets> |
1074 | 1092 | <reportSet> |
|
1093 | 1111 | <configuration> |
1094 | 1112 | <classifier>sources</classifier> |
1095 | 1113 | <excludeTypes>pom,maven-plugin</excludeTypes> |
1096 | | - <excludeGroupIds>org.webjars,antlr,org.beanshell,org.apache.maven.plugins,org.apache.maven.scm</excludeGroupIds> |
1097 | | - <excludeArtifactIds>weld-probe-core,antlr,bsh,velocity-tools,liquibase-core,jruby-complete</excludeArtifactIds> |
| 1114 | + <excludeGroupIds>org.webjars,antlr,org.beanshell,org.apache.maven.plugins,org.apache.maven.scm,org.jruby</excludeGroupIds> |
| 1115 | + <excludeArtifactIds>weld-probe-core,antlr,bsh,velocity-tools,liquibase-core,jruby-complete,cdi-api</excludeArtifactIds> |
1098 | 1116 | <failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact> |
1099 | 1117 | <outputDirectory>${project.build.directory}/dependency-sources/</outputDirectory> |
1100 | 1118 | </configuration> |
|
1205 | 1223 |
|
1206 | 1224 | <reporting> |
1207 | 1225 | <plugins> |
1208 | | - <!-- Same like Build or Inherited from Build --> |
1209 | 1226 | <plugin> |
1210 | 1227 | <groupId>org.apache.maven.plugins</groupId> |
1211 | 1228 | <artifactId>maven-enforcer-plugin</artifactId> |
|
0 commit comments