Skip to content

Commit 8a737aa

Browse files
committed
[JAVA-45846]
1 parent 7eb8b7f commit 8a737aa

File tree

7 files changed

+49
-58
lines changed

7 files changed

+49
-58
lines changed

core-java-modules/core-java-networking-6/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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-
<artifactId>core-java-networking</artifactId>
6+
<artifactId>core-java-networking-6</artifactId>
77
<packaging>jar</packaging>
88
<name>core-java-networking</name>
99

j2cl/pom.xml

+15-22
Original file line numberDiff line numberDiff line change
@@ -3,54 +3,34 @@
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-
7-
<groupId>com.baeldung.j2cl.taskmanager</groupId>
8-
<artifactId>j2cl-task-manager</artifactId>
6+
<groupId>com.baeldung.j2cl</groupId>
7+
<artifactId>j2cl</artifactId>
98
<packaging>war</packaging>
109
<version>1.0-SNAPSHOT</version>
1110

12-
<properties>
13-
<j2cl.maven.plugin.version>0.22.0</j2cl.maven.plugin.version>
14-
<elemental2.version>1.1.0</elemental2.version>
15-
16-
<jsinterop.base.version>1.0.0</jsinterop.base.version>
17-
<j2cl.version>v20230718-1</j2cl.version>
18-
19-
<maven.compiler.target>11</maven.compiler.target>
20-
<maven.compiler.source>11</maven.compiler.source>
21-
22-
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
23-
<maven.jetty.plugin.version>9.4.44.v20210927</maven.jetty.plugin.version>
24-
<maven.war.plugin.version>3.3.2</maven.war.plugin.version>
25-
</properties>
26-
2711
<dependencies>
2812
<dependency>
2913
<groupId>com.google.elemental2</groupId>
3014
<artifactId>elemental2-dom</artifactId>
3115
<version>${elemental2.version}</version>
3216
</dependency>
33-
3417
<dependency>
3518
<groupId>com.google.jsinterop</groupId>
3619
<artifactId>base</artifactId>
3720
<version>${jsinterop.base.version}</version>
3821
</dependency>
39-
4022
<dependency>
4123
<groupId>com.vertispan.j2cl</groupId>
4224
<artifactId>junit-annotations</artifactId>
4325
<version>${j2cl.version}</version>
4426
<scope>test</scope>
4527
</dependency>
46-
4728
<dependency>
4829
<groupId>com.vertispan.j2cl</groupId>
4930
<artifactId>junit-emul</artifactId>
5031
<version>${j2cl.version}</version>
5132
<scope>test</scope>
5233
</dependency>
53-
5434
<dependency>
5535
<groupId>com.vertispan.j2cl</groupId>
5636
<artifactId>junit-emul</artifactId>
@@ -126,4 +106,17 @@
126106
</plugin>
127107
</plugins>
128108
</build>
109+
110+
<properties>
111+
<j2cl.maven.plugin.version>0.22.0</j2cl.maven.plugin.version>
112+
<elemental2.version>1.1.0</elemental2.version>
113+
<jsinterop.base.version>1.0.0</jsinterop.base.version>
114+
<j2cl.version>v20230718-1</j2cl.version>
115+
<maven.compiler.target>11</maven.compiler.target>
116+
<maven.compiler.source>11</maven.compiler.source>
117+
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
118+
<maven.jetty.plugin.version>9.4.44.v20210927</maven.jetty.plugin.version>
119+
<maven.war.plugin.version>3.3.2</maven.war.plugin.version>
120+
</properties>
121+
129122
</project>

libraries-apm/new-relic/currency-converter/pom.xml

+15-16
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,18 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<parent>
6-
<groupId>org.springframework.boot</groupId>
7-
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.4.1</version>
9-
<relativePath/> <!-- lookup parent from repository -->
10-
</parent>
115
<groupId>com.baeldung</groupId>
126
<artifactId>currency-converter</artifactId>
137
<version>0.0.1</version>
14-
<name>Currency Converter</name>
8+
<name>currency-converter</name>
159
<description>Currency Converter Demo</description>
1610

17-
<properties>
18-
<java.version>21</java.version>
19-
<maven.compiler.source>21</maven.compiler.source>
20-
<maven.compiler.target>21</maven.compiler.target>
21-
<newrelic.version>8.17.0</newrelic.version>
22-
<okhttp3.version>4.12.0</okhttp3.version>
23-
</properties>
11+
<parent>
12+
<groupId>org.springframework.boot</groupId>
13+
<artifactId>spring-boot-starter-parent</artifactId>
14+
<version>3.4.1</version>
15+
<relativePath/>
16+
</parent>
2417

2518
<dependencies>
2619
<dependency>
@@ -61,20 +54,26 @@
6154
<artifactId>okhttp</artifactId>
6255
<version>${okhttp3.version}</version>
6356
</dependency>
64-
6557
<dependency>
6658
<groupId>com.newrelic.agent.java</groupId>
6759
<artifactId>newrelic-java</artifactId>
6860
<version>${newrelic.version}</version>
6961
<scope>provided</scope>
7062
<type>zip</type>
7163
</dependency>
72-
7364
<dependency>
7465
<groupId>com.newrelic.agent.java</groupId>
7566
<artifactId>newrelic-api</artifactId>
7667
<version>${newrelic.version}</version>
7768
</dependency>
7869
</dependencies>
7970

71+
<properties>
72+
<java.version>21</java.version>
73+
<maven.compiler.source>21</maven.compiler.source>
74+
<maven.compiler.target>21</maven.compiler.target>
75+
<newrelic.version>8.17.0</newrelic.version>
76+
<okhttp3.version>4.12.0</okhttp3.version>
77+
</properties>
78+
8079
</project>

libraries-apm/new-relic/newrelic-monitoring/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
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+
<groupId>com.baeldung.newrelic-monitoring</groupId>
7+
<artifactId>newrelic-monitoring</artifactId>
8+
69
<parent>
710
<groupId>org.springframework.boot</groupId>
811
<artifactId>spring-boot-starter-parent</artifactId>
912
<version>3.4.1</version>
10-
<relativePath/> <!-- lookup parent from repository -->
13+
<relativePath/>
1114
</parent>
1215

13-
<groupId>com.baeldung</groupId>
14-
<artifactId>newrelic</artifactId>
15-
1616
<dependencies>
1717
<dependency>
1818
<groupId>org.springframework.boot</groupId>

microservices-modules/micronaut-docker/micronaut-docker-maven/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://www.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<artifactId>micronautdocker_mvn</artifactId>
4+
<artifactId>micronautdocker-docker-maven</artifactId>
55
<version>0.1</version>
66
<packaging>${packaging}</packaging>
77

microservices-modules/pulumi/pom.xml

+13-14
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,10 @@
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.pulumi</groupId>
8-
<artifactId>pulumi-example</artifactId>
7+
<artifactId>pulumi</artifactId>
98
<version>1.0-SNAPSHOT</version>
109

11-
<properties>
12-
<encoding>UTF-8</encoding>
13-
<maven.compiler.source>17</maven.compiler.source>
14-
<maven.compiler.target>17</maven.compiler.target>
15-
<maven.compiler.release>17</maven.compiler.release>
16-
<pulumi.version>(,1.0]</pulumi.version>
17-
<pulumi.aws.version>(6.0.2,6.99]</pulumi.aws.version>
18-
<junit.jupiter.version>5.7.0</junit.jupiter.version>
19-
<mainClass>myproject.WebserverInfra</mainClass>
20-
<mainArgs/>
21-
</properties>
22-
2310
<parent>
2411
<groupId>com.baeldung</groupId>
2512
<artifactId>microservices-modules</artifactId>
@@ -117,4 +104,16 @@
117104
</plugin>
118105
</plugins>
119106
</build>
107+
108+
<properties>
109+
<encoding>UTF-8</encoding>
110+
<maven.compiler.source>17</maven.compiler.source>
111+
<maven.compiler.target>17</maven.compiler.target>
112+
<maven.compiler.release>17</maven.compiler.release>
113+
<pulumi.version>(,1.0]</pulumi.version>
114+
<pulumi.aws.version>(6.0.2,6.99]</pulumi.aws.version>
115+
<junit.jupiter.version>5.7.0</junit.jupiter.version>
116+
<mainClass>myproject.WebserverInfra</mainClass>
117+
<mainArgs/>
118+
</properties>
120119
</project>

0 commit comments

Comments
 (0)