这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core-java-modules/core-java-networking-6/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>core-java-networking</artifactId>
<artifactId>core-java-networking-6</artifactId>
<packaging>jar</packaging>
<name>core-java-networking</name>

Expand Down
37 changes: 15 additions & 22 deletions j2cl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,54 +3,34 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.baeldung.j2cl.taskmanager</groupId>
<artifactId>j2cl-task-manager</artifactId>
<groupId>com.baeldung.j2cl</groupId>
<artifactId>j2cl</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>

<properties>
<j2cl.maven.plugin.version>0.22.0</j2cl.maven.plugin.version>
<elemental2.version>1.1.0</elemental2.version>

<jsinterop.base.version>1.0.0</jsinterop.base.version>
<j2cl.version>v20230718-1</j2cl.version>

<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>

<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
<maven.jetty.plugin.version>9.4.44.v20210927</maven.jetty.plugin.version>
<maven.war.plugin.version>3.3.2</maven.war.plugin.version>
</properties>

<dependencies>
<dependency>
<groupId>com.google.elemental2</groupId>
<artifactId>elemental2-dom</artifactId>
<version>${elemental2.version}</version>
</dependency>

<dependency>
<groupId>com.google.jsinterop</groupId>
<artifactId>base</artifactId>
<version>${jsinterop.base.version}</version>
</dependency>

<dependency>
<groupId>com.vertispan.j2cl</groupId>
<artifactId>junit-annotations</artifactId>
<version>${j2cl.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.vertispan.j2cl</groupId>
<artifactId>junit-emul</artifactId>
<version>${j2cl.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.vertispan.j2cl</groupId>
<artifactId>junit-emul</artifactId>
Expand Down Expand Up @@ -126,4 +106,17 @@
</plugin>
</plugins>
</build>

<properties>
<j2cl.maven.plugin.version>0.22.0</j2cl.maven.plugin.version>
<elemental2.version>1.1.0</elemental2.version>
<jsinterop.base.version>1.0.0</jsinterop.base.version>
<j2cl.version>v20230718-1</j2cl.version>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
<maven.jetty.plugin.version>9.4.44.v20210927</maven.jetty.plugin.version>
<maven.war.plugin.version>3.3.2</maven.war.plugin.version>
</properties>

</project>
31 changes: 15 additions & 16 deletions libraries-apm/new-relic/currency-converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,18 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.baeldung</groupId>
<artifactId>currency-converter</artifactId>
<version>0.0.1</version>
<name>Currency Converter</name>
<name>currency-converter</name>
<description>Currency Converter Demo</description>

<properties>
<java.version>21</java.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<newrelic.version>8.17.0</newrelic.version>
<okhttp3.version>4.12.0</okhttp3.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.1</version>
<relativePath/>
</parent>

<dependencies>
<dependency>
Expand Down Expand Up @@ -61,20 +54,26 @@
<artifactId>okhttp</artifactId>
<version>${okhttp3.version}</version>
</dependency>

<dependency>
<groupId>com.newrelic.agent.java</groupId>
<artifactId>newrelic-java</artifactId>
<version>${newrelic.version}</version>
<scope>provided</scope>
<type>zip</type>
</dependency>

<dependency>
<groupId>com.newrelic.agent.java</groupId>
<artifactId>newrelic-api</artifactId>
<version>${newrelic.version}</version>
</dependency>
</dependencies>

<properties>
<java.version>21</java.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<newrelic.version>8.17.0</newrelic.version>
<okhttp3.version>4.12.0</okhttp3.version>
</properties>

</project>
8 changes: 4 additions & 4 deletions libraries-apm/new-relic/newrelic-monitoring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung.newrelic-monitoring</groupId>
<artifactId>newrelic-monitoring</artifactId>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.1</version>
<relativePath/> <!-- lookup parent from repository -->
<relativePath/>
</parent>

<groupId>com.baeldung</groupId>
<artifactId>newrelic</artifactId>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://www.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>micronautdocker_mvn</artifactId>
<artifactId>micronaut-docker-maven</artifactId>
<version>0.1</version>
<packaging>${packaging}</packaging>

Expand Down
27 changes: 13 additions & 14 deletions microservices-modules/pulumi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.pulumi</groupId>
<artifactId>pulumi-example</artifactId>
<artifactId>pulumi</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
<encoding>UTF-8</encoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>
<pulumi.version>(,1.0]</pulumi.version>
<pulumi.aws.version>(6.0.2,6.99]</pulumi.aws.version>
<junit.jupiter.version>5.7.0</junit.jupiter.version>
<mainClass>myproject.WebserverInfra</mainClass>
<mainArgs/>
</properties>

<parent>
<groupId>com.baeldung</groupId>
<artifactId>microservices-modules</artifactId>
Expand Down Expand Up @@ -117,4 +104,16 @@
</plugin>
</plugins>
</build>

<properties>
<encoding>UTF-8</encoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>
<pulumi.version>(,1.0]</pulumi.version>
<pulumi.aws.version>(6.0.2,6.99]</pulumi.aws.version>
<junit.jupiter.version>5.7.0</junit.jupiter.version>
<mainClass>myproject.WebserverInfra</mainClass>
<mainArgs/>
</properties>
</project>