Add Python demo for showing how to embed Python in Java
[jython-java-sample.git] / pom.xml
blob61e9fc63ec2d14a017d9a30e293f15510d4a9695
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <groupId>com.smartitengineering.demo</groupId>
6     <artifactId>jython-test</artifactId>
7     <packaging>jar</packaging>
8     <version>1.0-SNAPSHOT</version>
9     <name>jython-test</name>
10     <url>http://maven.apache.org</url>
11     <dependencies>
12         <dependency>
13             <groupId>junit</groupId>
14             <artifactId>junit</artifactId>
15             <version>3.8.1</version>
16             <scope>test</scope>
17         </dependency>
18         <dependency>
19             <groupId>jython</groupId>
20             <artifactId>jython</artifactId>
21             <version>2.2.1</version>
22         </dependency>
23         <dependency>
24             <groupId>com.sun.script</groupId>
25             <artifactId>jython-engine</artifactId>
26             <version>1.1</version>
27         </dependency>
28     </dependencies>
29     <repositories>
30         <repository>
31             <id>maven2-repository.dev.java.net</id>
32             <name>Java.net Repository for Maven</name>
33             <url>http://download.java.net/maven/2/</url>
34             <layout>default</layout>
35             <snapshots>
36                 <enabled>false</enabled>
37             </snapshots>
38         </repository>
39         <repository>
40             <id>smart-it-snapshot-repo</id>
41             <name>Smart IT Engineering snapshot repo</name>
42             <url>http://dev.smartitengineering.com/maven-repo/snapshot</url>
43             <releases>
44                 <enabled>false</enabled>
45             </releases>
46             <snapshots>
47                 <enabled>true</enabled>
48             </snapshots>
49         </repository>
50         <repository>
51             <id>smart-it-release-repo</id>
52             <name>Smart IT Engineering release repo</name>
53             <url>http://dev.smartitengineering.com/maven-repo/release</url>
54             <releases>
55                 <enabled>true</enabled>
56             </releases>
57             <snapshots>
58                 <enabled>false</enabled>
59             </snapshots>
60         </repository>
61     </repositories>
62     <build>
63         <plugins>
64             <plugin>
65                 <groupId>org.codehaus.mojo</groupId>
66                 <artifactId>exec-maven-plugin</artifactId>
67                 <executions>
68                     <execution>
69                         <goals>
70                             <goal>java</goal>
71                         </goals>
72                     </execution>
73                 </executions>
74                 <configuration>
75                     <mainClass>com.smartitengineering.demo.jython.test.App</mainClass>
76                 </configuration>
77             </plugin>
78         </plugins>
79     </build>
80 </project>