1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
---|
3 | <modelVersion>4.0.0</modelVersion> |
---|
4 | <groupId>com.livinglogic</groupId> |
---|
5 | <artifactId>ul4</artifactId> |
---|
6 | <version>0.50</version> |
---|
7 | <name>UL4</name> |
---|
8 | <properties> |
---|
9 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
---|
10 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
---|
11 | </properties> |
---|
12 | <build> |
---|
13 | <plugins> |
---|
14 | <plugin> |
---|
15 | <artifactId>maven-compiler-plugin</artifactId> |
---|
16 | <version>2.3.2</version> |
---|
17 | <configuration> |
---|
18 | <source>1.6</source> |
---|
19 | <target>1.6</target> |
---|
20 | </configuration> |
---|
21 | </plugin> |
---|
22 | <plugin> |
---|
23 | <groupId>org.antlr</groupId> |
---|
24 | <artifactId>antlr3-maven-plugin</artifactId> |
---|
25 | <version>3.1.3-1</version> |
---|
26 | <executions> |
---|
27 | <execution> |
---|
28 | <goals> |
---|
29 | <goal>antlr</goal> |
---|
30 | </goals> |
---|
31 | </execution> |
---|
32 | </executions> |
---|
33 | </plugin> |
---|
34 | </plugins> |
---|
35 | </build> |
---|
36 | <profiles> |
---|
37 | <profile> |
---|
38 | <id>tools.jar</id> |
---|
39 | <activation> |
---|
40 | <property> |
---|
41 | <name>java.vendor</name> |
---|
42 | <value>Sun Microsystems Inc.</value> |
---|
43 | </property> |
---|
44 | </activation> |
---|
45 | <dependencies> |
---|
46 | <dependency> |
---|
47 | <groupId>com.sun</groupId> |
---|
48 | <artifactId>tools</artifactId> |
---|
49 | <version>1.6</version> |
---|
50 | <scope>system</scope> |
---|
51 | <optional>true</optional> |
---|
52 | <systemPath>${java.home}/../lib/tools.jar</systemPath> |
---|
53 | </dependency> |
---|
54 | </dependencies> |
---|
55 | </profile> |
---|
56 | </profiles> |
---|
57 | <dependencies> |
---|
58 | <dependency> |
---|
59 | <groupId>org.apache.ant</groupId> |
---|
60 | <artifactId>ant</artifactId> |
---|
61 | <version>[1.8.2]</version> |
---|
62 | </dependency> |
---|
63 | <dependency> |
---|
64 | <groupId>org.xeustechnologies</groupId> |
---|
65 | <artifactId>jcl-core</artifactId> |
---|
66 | <version>[2.2.2]</version> |
---|
67 | </dependency> |
---|
68 | <dependency> |
---|
69 | <groupId>commons-io</groupId> |
---|
70 | <artifactId>commons-io</artifactId> |
---|
71 | <version>[2.0.1]</version> |
---|
72 | </dependency> |
---|
73 | <dependency> |
---|
74 | <groupId>commons-lang</groupId> |
---|
75 | <artifactId>commons-lang</artifactId> |
---|
76 | <version>2.6</version> |
---|
77 | </dependency> |
---|
78 | <dependency> |
---|
79 | <groupId>org.python</groupId> |
---|
80 | <artifactId>jython-standalone</artifactId> |
---|
81 | <version>2.5.2</version> |
---|
82 | </dependency> |
---|
83 | <dependency> |
---|
84 | <groupId>junit</groupId> |
---|
85 | <artifactId>junit</artifactId> |
---|
86 | <version>4.10</version> |
---|
87 | </dependency> |
---|
88 | <dependency> |
---|
89 | <groupId>org.antlr</groupId> |
---|
90 | <artifactId>antlr</artifactId> |
---|
91 | <version>3.4</version> |
---|
92 | </dependency> |
---|
93 | </dependencies> |
---|
94 | </project> |
---|