[77] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
---|
[84] | 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> |
---|
[77] | 6 | |
---|
[84] | 7 | <groupId>framsticks</groupId> |
---|
| 8 | <artifactId>framsticks</artifactId> |
---|
| 9 | <version>1.0</version> |
---|
[77] | 10 | |
---|
| 11 | <repositories> |
---|
| 12 | <repository> |
---|
| 13 | <id>maven.imagej.net</id> |
---|
| 14 | <url>http://maven.imagej.net/content/repositories/public/</url> |
---|
| 15 | </repository> |
---|
| 16 | </repositories> |
---|
[78] | 17 | <properties> |
---|
| 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
---|
| 19 | </properties> |
---|
[87] | 20 | |
---|
| 21 | <dependencyManagement> |
---|
| 22 | <dependencies> |
---|
| 23 | <dependency> |
---|
| 24 | <groupId>com.ibm.icu</groupId> |
---|
| 25 | <artifactId>icu4j</artifactId> |
---|
| 26 | <version>3.4.4</version> |
---|
| 27 | </dependency> |
---|
| 28 | </dependencies> |
---|
| 29 | </dependencyManagement> |
---|
[77] | 30 | <dependencies> |
---|
| 31 | <dependency> |
---|
[85] | 32 | <groupId>com.google.code.findbugs</groupId> |
---|
| 33 | <artifactId>jsr305</artifactId> |
---|
| 34 | <version>2.0.1</version> |
---|
| 35 | </dependency> |
---|
| 36 | <dependency> |
---|
[77] | 37 | <groupId>log4j</groupId> |
---|
| 38 | <artifactId>log4j</artifactId> |
---|
| 39 | <version>1.2.16</version> |
---|
| 40 | <scope>compile</scope> |
---|
| 41 | </dependency> |
---|
[88] | 42 | <!-- <dependency> --> |
---|
| 43 | <!-- <groupId>commons-configuration</groupId> --> |
---|
| 44 | <!-- <artifactId>commons-configuration</artifactId> --> |
---|
| 45 | <!-- <version>1.9</version> --> |
---|
| 46 | <!-- <scope>compile</scope> --> |
---|
| 47 | <!-- </dependency> --> |
---|
[77] | 48 | <dependency> |
---|
[84] | 49 | <groupId>commons-collections</groupId> |
---|
| 50 | <artifactId>commons-collections</artifactId> |
---|
| 51 | <version>3.2.1</version> |
---|
| 52 | <scope>compile</scope> |
---|
| 53 | </dependency> |
---|
| 54 | <dependency> |
---|
[77] | 55 | <groupId>java3d</groupId> |
---|
| 56 | <artifactId>j3d-core</artifactId> |
---|
| 57 | <version>1.5.2</version> |
---|
| 58 | </dependency> |
---|
| 59 | <dependency> |
---|
| 60 | <groupId>java3d</groupId> |
---|
| 61 | <artifactId>vecmath</artifactId> |
---|
| 62 | <version>1.5.2</version> |
---|
| 63 | </dependency> |
---|
| 64 | <dependency> |
---|
| 65 | <groupId>java3d</groupId> |
---|
| 66 | <artifactId>j3d-core-utils</artifactId> |
---|
| 67 | <version>1.5.2</version> |
---|
| 68 | </dependency> |
---|
[84] | 69 | <dependency> |
---|
| 70 | <groupId>org.testng</groupId> |
---|
| 71 | <artifactId>testng</artifactId> |
---|
| 72 | <version>6.1.1</version> |
---|
| 73 | <scope>test</scope> |
---|
[77] | 74 | </dependency> |
---|
| 75 | <dependency> |
---|
[84] | 76 | <groupId>org.easytesting</groupId> |
---|
| 77 | <artifactId>fest-assert</artifactId> |
---|
| 78 | <version>1.4</version> |
---|
| 79 | </dependency> |
---|
| 80 | <dependency> |
---|
| 81 | <groupId>org.easytesting</groupId> |
---|
| 82 | <artifactId>fest-swing-testng</artifactId> |
---|
| 83 | <version>1.2.1</version> |
---|
| 84 | </dependency> |
---|
| 85 | |
---|
[87] | 86 | <!-- the logic of @Immutable checking built in FindBugs is not very comprehensive --> |
---|
| 87 | <dependency> |
---|
| 88 | <groupId>org.mutabilitydetector</groupId> |
---|
| 89 | <artifactId>MutabilityDetector4FindBugs</artifactId> |
---|
| 90 | <version>0.2.3</version> |
---|
| 91 | <scope>test</scope> |
---|
| 92 | </dependency> |
---|
| 93 | |
---|
| 94 | <dependency> |
---|
| 95 | <groupId>org.mutabilitydetector</groupId> |
---|
| 96 | <artifactId>MutabilityDetector</artifactId> |
---|
| 97 | <version>0.9</version> |
---|
| 98 | <scope>test</scope> |
---|
| 99 | </dependency> |
---|
[84] | 100 | <!-- <dependency> --> |
---|
| 101 | <!-- <groupId>junit</groupId> --> |
---|
| 102 | <!-- <artifactId>junit</artifactId> --> |
---|
| 103 | <!-- <version>4.8.1</version> --> |
---|
| 104 | <!-- <scope>test</scope> --> |
---|
| 105 | <!-- </dependency> --> |
---|
| 106 | |
---|
| 107 | <!--dependency> |
---|
| 108 | </dependency> |
---|
| 109 | <dependency> |
---|
| 110 | </dependency--> |
---|
[77] | 111 | </dependencies> |
---|
[84] | 112 | <build> |
---|
| 113 | <plugins> |
---|
| 114 | <plugin> |
---|
| 115 | <groupId>org.apache.maven.plugins</groupId> |
---|
[86] | 116 | <artifactId>maven-surefire-plugin</artifactId> |
---|
| 117 | <version>2.9</version> |
---|
| 118 | <configuration> |
---|
| 119 | <useFile>false</useFile> |
---|
| 120 | </configuration> |
---|
| 121 | </plugin> |
---|
| 122 | |
---|
| 123 | <plugin> |
---|
| 124 | <groupId>org.apache.maven.plugins</groupId> |
---|
[84] | 125 | <artifactId>maven-compiler-plugin</artifactId> |
---|
| 126 | <version>3.0</version> |
---|
| 127 | <configuration> |
---|
[85] | 128 | <source>1.7</source> |
---|
| 129 | <target>1.7</target> |
---|
[84] | 130 | </configuration> |
---|
| 131 | </plugin> |
---|
| 132 | |
---|
| 133 | <plugin> |
---|
| 134 | <groupId>org.codehaus.mojo</groupId> |
---|
| 135 | <artifactId>exec-maven-plugin</artifactId> |
---|
| 136 | <version>1.2.1</version> |
---|
| 137 | <executions> |
---|
| 138 | <execution> |
---|
| 139 | <goals> |
---|
| 140 | <goal>exec</goal> |
---|
| 141 | </goals> |
---|
| 142 | </execution> |
---|
| 143 | </executions> |
---|
| 144 | <configuration> |
---|
| 145 | <executable>java</executable> |
---|
| 146 | <!-- optional --> |
---|
| 147 | <workingDirectory>/home/psniegowski/mgr/framsticks</workingDirectory> |
---|
| 148 | <arguments> |
---|
| 149 | <!-- <argument>-ea</argument> --> |
---|
| 150 | <argument>-Xdebug</argument> |
---|
| 151 | <argument>-Xrunjdwp:transport=dt_socket,address=4711,server=y,suspend=n</argument> |
---|
| 152 | <argument>-classpath</argument> |
---|
| 153 | <classpath /> |
---|
[88] | 154 | <argument>com.framsticks.core.Framsticks</argument> |
---|
[84] | 155 | </arguments> |
---|
| 156 | </configuration> |
---|
| 157 | </plugin> |
---|
| 158 | |
---|
| 159 | </plugins> |
---|
| 160 | </build> |
---|
[85] | 161 | <reporting> |
---|
| 162 | <plugins> |
---|
| 163 | <plugin> |
---|
| 164 | <groupId>org.codehaus.mojo</groupId> |
---|
| 165 | <artifactId>findbugs-maven-plugin</artifactId> |
---|
| 166 | <version>2.5.2</version> |
---|
| 167 | <configuration> |
---|
| 168 | <!-- <plugins> --> |
---|
| 169 | <!-- <plugin> --> |
---|
| 170 | <!-- <groupId>com.google.code.findbugs</groupId> --> |
---|
| 171 | <!-- <artifactId>jsr305</artifactId> --> |
---|
| 172 | <!-- <version>2.0.1</version> --> |
---|
| 173 | <!-- </plugin> --> |
---|
| 174 | <!-- </plugins> --> |
---|
| 175 | </configuration> |
---|
[84] | 176 | |
---|
[85] | 177 | </plugin> |
---|
| 178 | </plugins> |
---|
| 179 | </reporting> |
---|
| 180 | |
---|
[77] | 181 | </project> |
---|