2019-10-31 21:43:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-06 12:57:07 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-03-15 08:52:24 -04:00
|
|
|
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">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>core-java-jndi</artifactId>
|
|
|
|
<name>core-java-jndi</name>
|
|
|
|
|
|
|
|
<parent>
|
2020-01-10 06:52:13 -05:00
|
|
|
<groupId>com.baeldung.core-java-modules</groupId>
|
|
|
|
<artifactId>core-java-modules</artifactId>
|
2020-05-25 10:15:48 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${spring.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${spring.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${spring.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${spring.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${h2.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
2021-11-03 19:05:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.directory.server</groupId>
|
|
|
|
<artifactId>apacheds-test-framework</artifactId>
|
|
|
|
<version>${apacheds.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2023-03-06 13:26:19 -05:00
|
|
|
<plugin>
|
2024-01-04 13:08:03 -05:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2023-03-06 13:26:19 -05:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2024-01-04 13:08:03 -05:00
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
2023-03-06 13:26:19 -05:00
|
|
|
<configuration combine.self="override">
|
|
|
|
<forkCount>3</forkCount>
|
|
|
|
<reuseForks>false</reuseForks>
|
|
|
|
<includes>
|
|
|
|
<include>SpringContextTest</include>
|
|
|
|
<include>**/*UnitTest</include>
|
|
|
|
</includes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-10-31 21:43:47 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-03-15 08:52:24 -04:00
|
|
|
|
2020-01-15 15:23:26 -05:00
|
|
|
<properties>
|
|
|
|
<spring.version>5.0.9.RELEASE</spring.version>
|
2021-11-03 19:05:01 -04:00
|
|
|
<apacheds.version>2.0.0.AM26</apacheds.version>
|
2024-01-04 13:08:03 -05:00
|
|
|
<maven-surefire-plugin.version>3.2.3</maven-surefire-plugin.version>
|
2020-01-15 15:23:26 -05:00
|
|
|
</properties>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2021-05-06 12:57:07 -04:00
|
|
|
</project>
|