summaryrefslogtreecommitdiffstats
path: root/bindings/func-java/pom.xml
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-07-11 16:53:26 -0400
committerMichael DeHaan <mdehaan@redhat.com>2008-07-11 16:53:26 -0400
commit210249ab81e5b4cad1575f6c2a21d06b360531b9 (patch)
treed6a768f7532fa42cffd9d65f05699b922469e112 /bindings/func-java/pom.xml
parent5c713b017d2af83da11f7b77e188fd0c2686b3c3 (diff)
downloadfunc-210249ab81e5b4cad1575f6c2a21d06b360531b9.tar.gz
func-210249ab81e5b4cad1575f6c2a21d06b360531b9.tar.xz
func-210249ab81e5b4cad1575f6c2a21d06b360531b9.zip
Merging Marco's func bindings
Diffstat (limited to 'bindings/func-java/pom.xml')
-rw-r--r--bindings/func-java/pom.xml91
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>