Changeset 84 for java/main/pom.xml
Legend:
- Unmodified
- Added
- Removed
-
java/main
-
Property
svn:ignore
set to
target
-
Property
svn:ignore
set to
-
java/main/pom.xml
r78 r84 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 4 5 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 5 <modelVersion>4.0.0</modelVersion> 6 6 7 8 9 7 <groupId>framsticks</groupId> 8 <artifactId>framsticks</artifactId> 9 <version>1.0</version> 10 10 11 11 <repositories> … … 18 18 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 19 19 </properties> 20 <build>21 <plugins>22 <plugin>23 <groupId>org.apache.maven.plugins</groupId>24 <artifactId>maven-compiler-plugin</artifactId>25 <version>3.0</version>26 <configuration>27 <source>1.6</source>28 <target>1.6</target>29 </configuration>30 </plugin>31 </plugins>32 </build>33 34 20 <dependencies> 35 21 <dependency> … … 42 28 <groupId>commons-configuration</groupId> 43 29 <artifactId>commons-configuration</artifactId> 44 <version>1.7</version> 30 <version>1.9</version> 31 <scope>compile</scope> 32 </dependency> 33 <dependency> 34 <groupId>commons-collections</groupId> 35 <artifactId>commons-collections</artifactId> 36 <version>3.2.1</version> 45 37 <scope>compile</scope> 46 38 </dependency> … … 61 53 </dependency> 62 54 63 <dependency> 64 <groupId>junit</groupId> 65 <artifactId>junit</artifactId> 66 <version>4.8.1</version> 67 <scope>test</scope> 68 </dependency> 69 <!--dependency> 55 <dependency> 56 <groupId>org.testng</groupId> 57 <artifactId>testng</artifactId> 58 <version>6.1.1</version> 59 <scope>test</scope> 70 60 </dependency> 71 61 <dependency> 72 </dependency--> 62 <groupId>org.easytesting</groupId> 63 <artifactId>fest-assert</artifactId> 64 <version>1.4</version> 65 </dependency> 66 <dependency> 67 <groupId>org.easytesting</groupId> 68 <artifactId>fest-swing-testng</artifactId> 69 <version>1.2.1</version> 70 </dependency> 71 72 <!-- <dependency> --> 73 <!-- <groupId>junit</groupId> --> 74 <!-- <artifactId>junit</artifactId> --> 75 <!-- <version>4.8.1</version> --> 76 <!-- <scope>test</scope> --> 77 <!-- </dependency> --> 78 79 <!--dependency> 80 </dependency> 81 <dependency> 82 </dependency--> 73 83 </dependencies> 84 <build> 85 <plugins> 86 <plugin> 87 <groupId>org.apache.maven.plugins</groupId> 88 <artifactId>maven-compiler-plugin</artifactId> 89 <version>3.0</version> 90 <configuration> 91 <source>1.6</source> 92 <target>1.6</target> 93 </configuration> 94 </plugin> 95 96 <plugin> 97 <groupId>org.codehaus.mojo</groupId> 98 <artifactId>exec-maven-plugin</artifactId> 99 <version>1.2.1</version> 100 <executions> 101 <execution> 102 <goals> 103 <goal>exec</goal> 104 </goals> 105 </execution> 106 </executions> 107 <configuration> 108 <executable>java</executable> 109 <!-- optional --> 110 <workingDirectory>/home/psniegowski/mgr/framsticks</workingDirectory> 111 <arguments> 112 <!-- <argument>-ea</argument> --> 113 <argument>-Xdebug</argument> 114 <argument>-Xrunjdwp:transport=dt_socket,address=4711,server=y,suspend=n</argument> 115 <argument>-classpath</argument> 116 <classpath /> 117 <argument>com.framsticks.core.Program</argument> 118 </arguments> 119 </configuration> 120 </plugin> 121 122 </plugins> 123 </build> 124 74 125 </project>
Note: See TracChangeset
for help on using the changeset viewer.