Skip to content

Commit 95dc22f

Browse files
committed
[BAEL-18306-2] - Fix formatting of POMs Part 2
1 parent 6a22b91 commit 95dc22f

7 files changed

Lines changed: 52 additions & 56 deletions

File tree

java-ee-8-security-api/pom.xml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@
1414
<version>1.0.0-SNAPSHOT</version>
1515
</parent>
1616

17+
<modules>
18+
<module>app-auth-basic-store-db</module>
19+
<module>app-auth-form-store-ldap</module>
20+
<module>app-auth-custom-form-store-custom</module>
21+
<module>app-auth-custom-no-store</module>
22+
</modules>
23+
1724
<dependencies>
1825

1926
<dependency>
@@ -58,17 +65,9 @@
5865
</plugins>
5966
</build>
6067

61-
<modules>
62-
<module>app-auth-basic-store-db</module>
63-
<module>app-auth-form-store-ldap</module>
64-
<module>app-auth-custom-form-store-custom</module>
65-
<module>app-auth-custom-no-store</module>
66-
</modules>
67-
6868
<properties>
6969
<defaultHttpPort>9080</defaultHttpPort>
7070
<defaultHttpsPort>9443</defaultHttpsPort>
71-
7271
<javaee-version>8.0</javaee-version>
7372
<liberty-maven-plugin.version>2.3</liberty-maven-plugin.version>
7473
<openliberty-runtime.version>18.0.0.1</openliberty-runtime.version>

libraries-primitive/pom.xml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,11 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
6-
76
<groupId>com.baeldung</groupId>
87
<artifactId>libraries-primitive</artifactId>
98
<version>1.0-SNAPSHOT</version>
109
<name>libraries-primitive</name>
1110

12-
<properties>
13-
<maven.compiler.source>1.8</maven.compiler.source>
14-
<maven.compiler.target>1.8</maven.compiler.target>
15-
</properties>
16-
1711
<dependencies>
1812
<!-- https://mvnrepository.com/artifact/it.unimi.dsi/fastutil -->
1913
<dependency>
@@ -47,12 +41,15 @@
4741
<artifactId>eclipse-collections-api</artifactId>
4842
<version>10.0.0</version>
4943
</dependency>
50-
5144
<dependency>
5245
<groupId>org.eclipse.collections</groupId>
5346
<artifactId>eclipse-collections</artifactId>
5447
<version>10.0.0</version>
5548
</dependency>
56-
5749
</dependencies>
50+
51+
<properties>
52+
<maven.compiler.source>1.8</maven.compiler.source>
53+
<maven.compiler.target>1.8</maven.compiler.target>
54+
</properties>
5855
</project>

logging-modules/flogger/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>flogger</artifactId>
7+
58
<parent>
69
<artifactId>logging-modules</artifactId>
710
<groupId>com.baeldung</groupId>
811
<version>1.0.0-SNAPSHOT</version>
912
</parent>
10-
<modelVersion>4.0.0</modelVersion>
11-
12-
<artifactId>flogger</artifactId>
1313

1414
<dependencies>
1515
<dependency>

oauth2-framework-impl/oauth2-authorization-server/pom.xml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
xmlns="http://maven.apache.org/POM/4.0.0"
44
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
55
<modelVersion>4.0.0</modelVersion>
6-
76
<artifactId>oauth2-authorization-server</artifactId>
87
<packaging>war</packaging>
98
<name>oauth2-authorization-server</name>
@@ -14,15 +13,6 @@
1413
<version>1.0-SNAPSHOT</version>
1514
</parent>
1615

17-
<properties>
18-
<h2.version>1.4.199</h2.version>
19-
<httpPort>9080</httpPort>
20-
<httpsPort>9443</httpsPort>
21-
<nimbus-jose-jwt.version>7.3</nimbus-jose-jwt.version>
22-
<bcprov-jdk15on.version>1.62</bcprov-jdk15on.version>
23-
<bcpkix-jdk15on.version>1.62</bcpkix-jdk15on.version>
24-
</properties>
25-
2616
<dependencies>
2717
<dependency>
2818
<groupId>com.nimbusds</groupId>
@@ -73,4 +63,13 @@
7363
</plugin>
7464
</plugins>
7565
</build>
66+
67+
<properties>
68+
<h2.version>1.4.199</h2.version>
69+
<httpPort>9080</httpPort>
70+
<httpsPort>9443</httpsPort>
71+
<nimbus-jose-jwt.version>7.3</nimbus-jose-jwt.version>
72+
<bcprov-jdk15on.version>1.62</bcprov-jdk15on.version>
73+
<bcpkix-jdk15on.version>1.62</bcpkix-jdk15on.version>
74+
</properties>
7675
</project>

oauth2-framework-impl/oauth2-client/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@
1313
<version>1.0-SNAPSHOT</version>
1414
</parent>
1515

16-
<properties>
17-
<httpPort>9180</httpPort>
18-
<httpsPort>9543</httpsPort>
19-
</properties>
20-
2116
<build>
2217
<plugins>
2318
<plugin>
@@ -26,4 +21,9 @@
2621
</plugin>
2722
</plugins>
2823
</build>
24+
25+
<properties>
26+
<httpPort>9180</httpPort>
27+
<httpsPort>9543</httpsPort>
28+
</properties>
2929
</project>

oauth2-framework-impl/oauth2-resource-server/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,6 @@
1313
<version>1.0-SNAPSHOT</version>
1414
</parent>
1515

16-
<properties>
17-
<httpPort>9280</httpPort>
18-
<httpsPort>8643</httpsPort>
19-
<jwt.issuer>http://localhost:9080</jwt.issuer>
20-
<jwt.resourceId>http://localhost:9280</jwt.resourceId>
21-
<microprofile-jwt-auth-api.version>1.1</microprofile-jwt-auth-api.version>
22-
</properties>
23-
2416
<dependencies>
2517
<dependency>
2618
<groupId>org.eclipse.microprofile.jwt</groupId>
@@ -39,4 +31,12 @@
3931
</plugins>
4032
</build>
4133

34+
<properties>
35+
<httpPort>9280</httpPort>
36+
<httpsPort>8643</httpsPort>
37+
<jwt.issuer>http://localhost:9080</jwt.issuer>
38+
<jwt.resourceId>http://localhost:9280</jwt.resourceId>
39+
<microprofile-jwt-auth-api.version>1.1</microprofile-jwt-auth-api.version>
40+
</properties>
41+
4242
</project>

oauth2-framework-impl/pom.xml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,11 @@
99
<packaging>pom</packaging>
1010
<name>oauth2-framework-impl</name>
1111

12-
<properties>
13-
<maven.compiler.source>1.8</maven.compiler.source>
14-
<maven.compiler.target>1.8</maven.compiler.target>
15-
<failOnMissingWebXml>false</failOnMissingWebXml>
16-
<openliberty.version>RELEASE</openliberty.version>
17-
<openliberty.maven.version>2.6.4</openliberty.maven.version>
18-
<javaee-web-api.version>8.0</javaee-web-api.version>
19-
<microprofile-config-api.version>1.3</microprofile-config-api.version>
20-
</properties>
12+
<modules>
13+
<module>oauth2-authorization-server</module>
14+
<module>oauth2-resource-server</module>
15+
<module>oauth2-client</module>
16+
</modules>
2117

2218
<dependencies>
2319
<dependency>
@@ -88,9 +84,14 @@
8884
</plugins>
8985
</pluginManagement>
9086
</build>
91-
<modules>
92-
<module>oauth2-authorization-server</module>
93-
<module>oauth2-resource-server</module>
94-
<module>oauth2-client</module>
95-
</modules>
87+
88+
<properties>
89+
<maven.compiler.source>1.8</maven.compiler.source>
90+
<maven.compiler.target>1.8</maven.compiler.target>
91+
<failOnMissingWebXml>false</failOnMissingWebXml>
92+
<openliberty.version>RELEASE</openliberty.version>
93+
<openliberty.maven.version>2.6.4</openliberty.maven.version>
94+
<javaee-web-api.version>8.0</javaee-web-api.version>
95+
<microprofile-config-api.version>1.3</microprofile-config-api.version>
96+
</properties>
9697
</project>

0 commit comments

Comments
 (0)