2016-08-06 16:03:58 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-08-17 03:41:23 -04:00
|
|
|
<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://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-08-06 16:03:58 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>cdi</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2016-08-17 03:41:23 -04:00
|
|
|
|
2017-05-09 16:37:43 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2017-05-12 14:32:54 -04:00
|
|
|
</parent>
|
|
|
|
|
2016-08-06 16:03:58 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
2017-05-12 14:32:54 -04:00
|
|
|
<version>${spring.version}</version>
|
2016-08-06 16:03:58 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2016-08-17 03:41:23 -04:00
|
|
|
|
2016-08-06 16:03:58 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
<artifactId>aspectjweaver</artifactId>
|
2016-12-13 15:02:58 -05:00
|
|
|
<version>${aspectjweaver.version}</version>
|
2016-08-06 16:03:58 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.weld.se</groupId>
|
|
|
|
<artifactId>weld-se-core</artifactId>
|
2016-12-13 15:02:58 -05:00
|
|
|
<version>${weld-se-core.version}</version>
|
2016-08-06 16:03:58 -04:00
|
|
|
</dependency>
|
2016-08-17 03:41:23 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2016-08-06 16:03:58 -04:00
|
|
|
</dependencies>
|
2016-08-17 03:41:23 -04:00
|
|
|
|
2016-10-22 13:27:31 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>integration</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*LiveTest.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
<includes>
|
|
|
|
<include>**/*IntegrationTest.java</include>
|
|
|
|
</includes>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<test.mime>json</test.mime>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2016-08-17 03:41:23 -04:00
|
|
|
<properties>
|
2016-12-13 15:02:58 -05:00
|
|
|
<spring.version>4.3.4.RELEASE</spring.version>
|
|
|
|
<aspectjweaver.version>1.8.9</aspectjweaver.version>
|
|
|
|
<weld-se-core.version>2.4.1.Final</weld-se-core.version>
|
2016-08-17 03:41:23 -04:00
|
|
|
</properties>
|
|
|
|
|
2016-08-06 16:03:58 -04:00
|
|
|
</project>
|