JAVA-12424 Renamed spring-ejb to spring-ejb-modules
This commit is contained in:
parent
08d11b982c
commit
2971fe239f
8
pom.xml
8
pom.xml
|
@ -630,7 +630,7 @@
|
|||
<module>spring-di-3</module>
|
||||
<module>spring-drools</module>
|
||||
|
||||
<module>spring-ejb</module>
|
||||
<module>spring-ejb-modules</module>
|
||||
<module>spring-exceptions</module>
|
||||
|
||||
<module>spring-freemarker</module>
|
||||
|
@ -750,7 +750,7 @@
|
|||
<module>libraries-6</module>
|
||||
|
||||
<module>spring-boot-modules/spring-boot-react</module>
|
||||
<module>spring-ejb/ejb-beans</module>
|
||||
<module>spring-ejb-modules/ejb-beans</module>
|
||||
|
||||
<module>vaadin</module>
|
||||
<module>vavr</module>
|
||||
|
@ -1084,7 +1084,7 @@
|
|||
<module>spring-di-3</module>
|
||||
<module>spring-drools</module>
|
||||
|
||||
<module>spring-ejb</module>
|
||||
<module>spring-ejb-modules</module>
|
||||
<module>spring-exceptions</module>
|
||||
|
||||
<module>spring-freemarker</module>
|
||||
|
@ -1197,7 +1197,7 @@
|
|||
<module>libraries-6</module>
|
||||
|
||||
<module>spring-boot-modules/spring-boot-react</module>
|
||||
<module>spring-ejb/ejb-beans</module>
|
||||
<module>spring-ejb-modules/ejb-beans</module>
|
||||
|
||||
<module>vaadin</module>
|
||||
<module>vavr</module>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
<parent>
|
||||
<groupId>com.baeldung.spring.ejb</groupId>
|
||||
<artifactId>spring-ejb</artifactId>
|
||||
<artifactId>spring-ejb-modules</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
|
@ -37,7 +37,18 @@
|
|||
<groupId>org.apache.tomee</groupId>
|
||||
<artifactId>tomee-embedded</artifactId>
|
||||
<version>${tomee-embedded.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>com.sun.xml.messaging.saaj</groupId>
|
||||
<artifactId>saaj-impl</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.messaging.saaj</groupId>
|
||||
<artifactId>saaj-impl</artifactId>
|
||||
<version>3.0.0-M2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context</artifactId>
|
||||
|
@ -94,12 +105,12 @@
|
|||
<activeByDefault>true</activeByDefault>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.wildfly</groupId>
|
||||
<artifactId>wildfly-arquillian-container-managed</artifactId>
|
||||
<version>${wildfly.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.wildfly.arquillian</groupId>
|
||||
<artifactId>wildfly-arquillian-container-managed</artifactId>
|
||||
<version>5.0.0.Alpha3</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
|
@ -181,7 +192,7 @@
|
|||
|
||||
<properties>
|
||||
<arquillian-bom.version>1.6.0.Final</arquillian-bom.version>
|
||||
<tomee-embedded.version>8.0.8</tomee-embedded.version>
|
||||
<tomee-embedded.version>8.0.11</tomee-embedded.version>
|
||||
<glassfish-embedded-all.version>6.2.2</glassfish-embedded-all.version>
|
||||
<arquillian-glassfish-embedded-3.1.version>1.0.2</arquillian-glassfish-embedded-3.1.version>
|
||||
<wildfly.version>8.2.1.Final</wildfly.version>
|
|
@ -4,9 +4,9 @@
|
|||
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.spring.ejb</groupId>
|
||||
<artifactId>spring-ejb</artifactId>
|
||||
<artifactId>spring-ejb-modules</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<name>spring-ejb</name>
|
||||
<name>spring-ejb-modules</name>
|
||||
<packaging>pom</packaging>
|
||||
<description>Spring EJB Tutorial</description>
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
|||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- for junit5 to successfully be able to discover junit4 tests, we need 4.12+ version of
|
||||
<!-- for junit5 to successfully be able to discover junit4 tests, we need 4.12+ version of
|
||||
junit:junit in the classpath. hence forcing the latest 4.13.2 available version for junit5 compatibility -->
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
|
@ -93,4 +93,4 @@
|
|||
<ejb.version>3.2</ejb.version>
|
||||
</properties>
|
||||
|
||||
</project>
|
||||
</project>
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<parent>
|
||||
<groupId>com.baeldung.spring.ejb</groupId>
|
||||
<artifactId>spring-ejb</artifactId>
|
||||
<artifactId>spring-ejb-modules</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
<parent>
|
||||
<groupId>com.baeldung.spring.ejb</groupId>
|
||||
<artifactId>spring-ejb</artifactId>
|
||||
<artifactId>spring-ejb-modules</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
<parent>
|
||||
<groupId>com.baeldung.spring.ejb</groupId>
|
||||
<artifactId>spring-ejb</artifactId>
|
||||
<artifactId>spring-ejb-modules</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
Loading…
Reference in New Issue