Files
java-tutorials/spring-groovy/pom.xml
T

69 lines
2.7 KiB
XML
Raw Normal View History

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2018-07-12 12:34:54 +05:30
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2018-04-26 18:07:47 +05:30
<modelVersion>4.0.0</modelVersion>
2018-04-26 18:07:47 +05:30
<groupId>com.baeldug</groupId>
<artifactId>spring-groovy</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>spring-groovy</name>
<url>http://maven.apache.org</url>
2017-05-09 22:37:43 +02:00
<parent>
<groupId>com.baeldung</groupId>
2018-06-02 20:14:15 +05:30
<artifactId>parent-spring-4</artifactId>
2018-07-12 12:34:54 +05:30
<version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-spring-4</relativePath>
2018-04-26 18:07:47 +05:30
</parent>
2018-07-12 12:34:54 +05:30
2018-04-26 18:07:47 +05:30
<dependencies>
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-groovy</artifactId>
2018-07-12 12:34:54 +05:30
<version>${spring-integration-groovy.version}</version>
2018-04-26 18:07:47 +05:30
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
2018-07-12 12:34:54 +05:30
<version>${groovy-all.version}</version>
2018-04-26 18:07:47 +05:30
</dependency>
</dependencies>
2018-07-12 12:34:54 +05:30
2018-04-26 18:07:47 +05:30
<build>
2017-10-27 23:45:27 +02:00
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
2018-07-12 12:34:54 +05:30
<version>${maven-compiler-plugin.version}</version>
2017-10-27 23:45:27 +02:00
<configuration>
<compilerId>groovy-eclipse-compiler</compilerId>
<verbose>true</verbose>
2018-07-12 12:34:54 +05:30
<source>${java.version}</source>
<target>${java.version}</target>
2017-10-27 23:45:27 +02:00
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-compiler</artifactId>
2018-07-12 12:34:54 +05:30
<version>${groovy-eclipse-compiler.version}</version>
2017-10-27 23:45:27 +02:00
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-batch</artifactId>
2018-07-12 12:34:54 +05:30
<version>${groovy-eclipse-batch.version}</version>
2017-10-27 23:45:27 +02:00
</dependency>
</dependencies>
</plugin>
</plugins>
2018-04-26 18:07:47 +05:30
</build>
2018-07-12 12:34:54 +05:30
2018-05-06 02:00:00 +05:30
<properties>
2018-07-12 12:34:54 +05:30
<groovy-eclipse-compiler.version>2.9.2-01</groovy-eclipse-compiler.version>
<groovy-eclipse-batch.version>2.4.3-01</groovy-eclipse-batch.version>
<spring-integration-groovy.version>4.3.7.RELEASE</spring-integration-groovy.version>
<groovy-all.version>2.4.12</groovy-all.version>
2018-05-06 02:00:00 +05:30
</properties>
2018-07-12 12:34:54 +05:30
</project>