2016-08-06 23:03:58 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-08-17 10:41:23 +03:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-04-26 18:07:47 +05:30
|
|
|
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>cdi</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2018-11-30 22:16:08 +05:30
|
|
|
<name>cdi</name>
|
2018-11-24 18:02:25 -03:00
|
|
|
|
2018-04-26 18:07:47 +05:30
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2018-06-02 20:14:15 +05:30
|
|
|
<artifactId>parent-spring-4</artifactId>
|
2018-05-06 02:00:00 +05:30
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-06-02 20:14:15 +05:30
|
|
|
<relativePath>../parent-spring-4</relativePath>
|
2018-04-26 18:07:47 +05:30
|
|
|
</parent>
|
2016-08-17 10:41:23 +03:00
|
|
|
|
2018-04-26 18:07:47 +05:30
|
|
|
<dependencies>
|
2018-11-24 18:02:25 -03:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.enterprise</groupId>
|
|
|
|
<artifactId>cdi-api</artifactId>
|
|
|
|
<version>${cdi-api.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.weld.se</groupId>
|
|
|
|
<artifactId>weld-se-core</artifactId>
|
|
|
|
<version>${weld-se-core.version}</version>
|
|
|
|
</dependency>
|
2018-06-19 18:19:56 -03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
2018-07-12 12:34:54 +05:30
|
|
|
<version>${hamcrest-core.version}</version>
|
2018-06-19 18:19:56 -03:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
2018-07-12 12:34:54 +05:30
|
|
|
<version>${assertj-core.version}</version>
|
2018-06-19 18:19:56 -03:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2018-07-12 12:34:54 +05:30
|
|
|
<version>${junit.version}</version>
|
2018-06-19 18:19:56 -03:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-04-26 18:07:47 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
<artifactId>aspectjweaver</artifactId>
|
|
|
|
<version>${aspectjweaver.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-02-04 00:06:11 +05:30
|
|
|
|
2018-04-26 18:07:47 +05:30
|
|
|
<properties>
|
2018-11-24 18:02:25 -03:00
|
|
|
<cdi-api.version>2.0.SP1</cdi-api.version>
|
|
|
|
<weld-se-core.version>3.0.5.Final</weld-se-core.version>
|
|
|
|
<aspectjweaver.version>1.9.2</aspectjweaver.version>
|
2018-07-12 12:34:54 +05:30
|
|
|
<hamcrest-core.version>1.3</hamcrest-core.version>
|
|
|
|
<assertj-core.version>3.10.0</assertj-core.version>
|
2018-11-24 18:02:25 -03:00
|
|
|
<spring.version>5.1.2.RELEASE</spring.version>
|
2018-04-26 18:07:47 +05:30
|
|
|
</properties>
|
2018-06-19 18:19:56 -03:00
|
|
|
</project>
|