diff options
| author | makkalot <makkalot@gmail.com> | 2008-07-18 10:34:37 +0300 |
|---|---|---|
| committer | makkalot <makkalot@gmail.com> | 2008-07-18 10:34:37 +0300 |
| commit | 8d1588e5644672e64785a6e4500d356eafdd9f4e (patch) | |
| tree | 9777bff2cf294f56cc9f4ef9fb402416cb69a977 /bindings/func-java/pom.xml | |
| parent | 36a4693b112a0435cac5420dee110634c445cefd (diff) | |
| parent | b53416b16bd54bf7a0ffbc0029d71b2a71e84a87 (diff) | |
| download | func-8d1588e5644672e64785a6e4500d356eafdd9f4e.tar.gz func-8d1588e5644672e64785a6e4500d356eafdd9f4e.tar.xz func-8d1588e5644672e64785a6e4500d356eafdd9f4e.zip | |
Merge branch 'async_status' into new_layout
Diffstat (limited to 'bindings/func-java/pom.xml')
| -rw-r--r-- | bindings/func-java/pom.xml | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/bindings/func-java/pom.xml b/bindings/func-java/pom.xml new file mode 100644 index 0000000..01668a4 --- /dev/null +++ b/bindings/func-java/pom.xml @@ -0,0 +1,91 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + <groupId>org.func</groupId> + <artifactId>func-java</artifactId> + <packaging>jar</packaging> + <version>1.0-SNAPSHOT</version> + <name>Func-Java Bindings</name> + <url>https://fedorahosted.org/func</url> + + + <dependencies> + + <dependency> + <groupId>org.jvyaml</groupId> + <artifactId>jvyaml</artifactId> + <version>1.1</version> + </dependency> + + <dependency> + <groupId>org.codehaus.groovy</groupId> + <artifactId>groovy-all</artifactId> + <version>1.5.6</version> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> + + </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo.groovy</groupId> + <artifactId>groovy-maven-plugin</artifactId> + <executions> + <execution> + <id>SourceCompile</id> + <phase>compile</phase> + <goals> + <!-- <goal>generateStubs</goal> --> + <goal>compile</goal> + <!-- <goal>generateTestStubs</goal> --> + <!-- <goal>testCompile</goal> --> + </goals> + <configuration> + <sources> + <fileset> + <directory>${pom.basedir}/src/main</directory> + <includes> + <include>**/*.groovy</include> + </includes> + </fileset> + </sources> + </configuration> + </execution> + + <execution> + <id>TestCompile</id> + <goals> + <goal>testCompile</goal> + </goals> + <configuration> + <sources> + <fileset> + <directory>${pom.basedir}/src/test/groovy</directory> + <includes> + <include>**/*.groovy</include> + </includes> + </fileset> + </sources> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> |
