|
26 | 26 | </parent> |
27 | 27 | <groupId>com.helger.as2</groupId> |
28 | 28 | <artifactId>as2-lib-parent-pom</artifactId> |
29 | | - <version>5.0.1-SNAPSHOT</version> |
| 29 | + <version>5.1.0-SNAPSHOT</version> |
30 | 30 | <packaging>pom</packaging> |
31 | 31 | <name>as2-lib-parent-pom</name> |
32 | 32 | <description>Base POM to build the as2-lib projects</description> |
|
71 | 71 | <log4j.version>2.20.0</log4j.version> |
72 | 72 | <spring-boot.version>3.0.3</spring-boot.version> |
73 | 73 | </properties> |
74 | | - |
| 74 | + |
75 | 75 | <dependencyManagement> |
76 | 76 | <dependencies> |
77 | 77 | <dependency> |
|
84 | 84 | <dependency> |
85 | 85 | <groupId>com.helger.web</groupId> |
86 | 86 | <artifactId>ph-web-parent-pom</artifactId> |
87 | | - <version>10.0.2-SNAPSHOT</version> |
| 87 | + <version>10.1.0</version> |
88 | 88 | <type>pom</type> |
89 | 89 | <scope>import</scope> |
90 | 90 | </dependency> |
|
98 | 98 | <dependency> |
99 | 99 | <groupId>com.helger.photon</groupId> |
100 | 100 | <artifactId>ph-oton-parent-pom</artifactId> |
101 | | - <version>9.0.1-SNAPSHOT</version> |
| 101 | + <version>9.1.0</version> |
102 | 102 | <type>pom</type> |
103 | 103 | <scope>import</scope> |
104 | 104 | </dependency> |
105 | 105 |
|
106 | | - <dependency> |
107 | | - <groupId>org.bouncycastle</groupId> |
108 | | - <artifactId>bcjmail-jdk18on</artifactId> |
109 | | - <version>1.72</version> |
110 | | - <exclusions> |
111 | | - <exclusion> |
112 | | - <groupId>com.sun.mail</groupId> |
113 | | - <artifactId>jakarta.mail</artifactId> |
114 | | - </exclusion> |
115 | | - </exclusions> |
116 | | - </dependency> |
117 | | - <dependency> |
118 | | - <groupId>org.eclipse.angus</groupId> |
119 | | - <artifactId>angus-mail</artifactId> |
120 | | - <version>2.0.1</version> |
121 | | - </dependency> |
122 | | - |
123 | 106 | <dependency> |
124 | 107 | <groupId>org.apache.logging.log4j</groupId> |
125 | 108 | <artifactId>log4j-api</artifactId> |
|
176 | 159 | </dependency> |
177 | 160 | </dependencies> |
178 | 161 |
|
179 | | - <modules> |
180 | | - <module>as2-lib</module> |
181 | | - <module>as2-partnership-mongodb</module> |
182 | | - <module>as2-servlet</module> |
183 | | - <module>as2-demo-webapp</module> |
184 | | - <module>as2-server</module> |
185 | | - <module>as2-demo-spring-boot</module> |
186 | | - </modules> |
187 | | - |
| 162 | + <profiles> |
| 163 | + <profile> |
| 164 | + <id>java11-16</id> |
| 165 | + <activation> |
| 166 | + <jdk>[11,17)</jdk> |
| 167 | + </activation> |
| 168 | + <modules> |
| 169 | + <module>as2-lib</module> |
| 170 | + <module>as2-partnership-mongodb</module> |
| 171 | + <module>as2-servlet</module> |
| 172 | + <module>as2-demo-webapp</module> |
| 173 | + <module>as2-server</module> |
| 174 | + <!-- as2-demo-spring-boot requires Java 17+ --> |
| 175 | + </modules> |
| 176 | + </profile> |
| 177 | + <profile> |
| 178 | + <id>java17+</id> |
| 179 | + <activation> |
| 180 | + <jdk>[17,)</jdk> |
| 181 | + </activation> |
| 182 | + <modules> |
| 183 | + <module>as2-lib</module> |
| 184 | + <module>as2-partnership-mongodb</module> |
| 185 | + <module>as2-servlet</module> |
| 186 | + <module>as2-demo-webapp</module> |
| 187 | + <module>as2-server</module> |
| 188 | + <module>as2-demo-spring-boot</module> |
| 189 | + </modules> |
| 190 | + </profile> |
| 191 | + </profiles> |
| 192 | + |
188 | 193 | <build> |
189 | 194 | <plugins> |
190 | 195 | <plugin> |
|
0 commit comments