|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 |
|
3 | 3 | <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/xsd/maven-4.0.0.xsd">
|
| 4 | + |
4 | 5 | <modelVersion>4.0.0</modelVersion>
|
5 |
| - |
6 | 6 | <groupId>com.naveensundarg</groupId>
|
7 | 7 | <artifactId>prover</artifactId>
|
8 | 8 | <version>1.40</version>
|
|
21 | 21 | <url>https://opensource.org/licenses/MIT</url>
|
22 | 22 | </license>
|
23 | 23 | </licenses>
|
| 24 | + |
| 25 | + <properties> |
| 26 | + <!-- This tells maven to build with Java 8 for Java 8--> |
| 27 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 28 | + <maven.compiler.target>1.8</maven.compiler.target> |
24 | 29 |
|
25 |
| - <!-- DEADCODE scm is not being used and this version hasn't been used --> |
26 |
| - <!--<scm> |
27 |
| - <connection>scm:git:https://github.com/naveensundarg/prover.git</connection> |
28 |
| - <developerConnection>scm:git:https://github.com/naveensundarg/prover.git</developerConnection> |
29 |
| - <url>https://github.com/naveensundarg/prover</url> |
30 |
| - <tag>prover-1.03</tag> |
31 |
| - </scm>--> |
| 30 | + <!-- If I have to keep waiting for tests I am going to lose it -James --> |
| 31 | + <maven.test.skip>true</maven.test.skip> |
| 32 | + </properties> |
32 | 33 |
|
33 |
| - <build> |
34 |
| - <plugins> |
35 |
| - <plugin> |
| 34 | + |
| 35 | + <build> |
| 36 | + <plugins> <!--plugins run durring the build --> |
| 37 | + <plugin> |
| 38 | + <!-- This plugin builds our exacuable jars--> |
36 | 39 | <groupId>org.apache.maven.plugins</groupId>
|
37 | 40 | <artifactId>maven-assembly-plugin</artifactId>
|
38 | 41 | <version>2.4</version>
|
|
92 | 95 | <version>1.0.1</version>
|
93 | 96 | </dependency>
|
94 | 97 |
|
95 |
| - <!-- Deadcode, used to visualize graphs we don't have --> |
96 |
| - <!-- https://github.com/nidi3/graphviz-java --> |
97 |
| - <!-- https://mvnrepository.com/artifact/guru.nidi/graphviz-java --> |
98 |
| - <!-- <dependency> |
99 |
| - <groupId>guru.nidi</groupId> |
100 |
| - <artifactId>graphviz-java</artifactId> |
101 |
| - <version>0.0.2</version> |
102 |
| - </dependency> --> |
103 |
| - |
104 |
| - <!-- DEADCODE Json Parsers, unused by current codebase --> |
105 |
| - <!-- |
106 |
| - <dependency> |
107 |
| - <groupId>org.json</groupId> |
108 |
| - <artifactId>json</artifactId> |
109 |
| - <version>20160212</version> |
110 |
| - </dependency>--> |
111 |
| - |
112 | 98 | <!-- Parses "extensible data notation" a subset of the clojure syntax -->
|
113 | 99 | <!-- Appears to be made use of extensibly for parsing shadowprover problems -->
|
114 | 100 | <!--https://github.com/bpsm/edn-java-->
|
|
142 | 128 | <version>1.10.0</version>
|
143 | 129 | </dependency>
|
144 | 130 |
|
145 |
| - <!-- DEADCODE does not appear to be used by any files --> |
146 |
| - <!--<dependency> |
147 |
| - <groupId>com.google.code.gson</groupId> |
148 |
| - <artifactId>gson</artifactId> |
149 |
| - <version>2.8.9</version> |
150 |
| - </dependency>--> |
151 |
| - |
152 | 131 | <!-- Used for the python interface-->
|
153 | 132 | <!-- https://mvnrepository.com/artifact/net.sf.py4j/py4j -->
|
154 | 133 | <dependency>
|
|
173 | 152 | <scope>test</scope>
|
174 | 153 | </dependency>
|
175 | 154 |
|
| 155 | + <!-- I have grouped all the unused dependancies here --> |
| 156 | + |
| 157 | + <!-- Deadcode, used to visualize graphs we don't have --> |
| 158 | + <!-- https://github.com/nidi3/graphviz-java --> |
| 159 | + <!-- https://mvnrepository.com/artifact/guru.nidi/graphviz-java --> |
| 160 | + <!-- <dependency> |
| 161 | + <groupId>guru.nidi</groupId> |
| 162 | + <artifactId>graphviz-java</artifactId> |
| 163 | + <version>0.0.2</version> |
| 164 | + </dependency> --> |
| 165 | + |
| 166 | + <!-- DEADCODE Json Parsers, unused by current codebase --> |
| 167 | + <!-- |
| 168 | + <dependency> |
| 169 | + <groupId>org.json</groupId> |
| 170 | + <artifactId>json</artifactId> |
| 171 | + <version>20160212</version> |
| 172 | + </dependency>--> |
| 173 | + |
| 174 | + <!-- DEADCODE does not appear to be used by any files --> |
| 175 | + <!--<dependency> |
| 176 | + <groupId>com.google.code.gson</groupId> |
| 177 | + <artifactId>gson</artifactId> |
| 178 | + <version>2.8.9</version> |
| 179 | + </dependency>--> |
| 180 | + |
176 | 181 | </dependencies>
|
177 | 182 |
|
178 | 183 | <!-- DEADCODE we're not deploying here, git is fine -->
|
|
184 | 189 | </repository>
|
185 | 190 | </distributionManagement> -->
|
186 | 191 |
|
187 |
| - <!-- This tells maven to build with Java 8 for Java 8--> |
188 |
| - <properties> |
189 |
| - <maven.compiler.source>1.8</maven.compiler.source> |
190 |
| - <maven.compiler.target>1.8</maven.compiler.target> |
191 |
| - </properties> |
192 |
| - |
| 192 | + <!-- DEADCODE scm is not being used and this version hasn't been used --> |
| 193 | + <!--<scm> |
| 194 | + <connection>scm:git:https://github.com/naveensundarg/prover.git</connection> |
| 195 | + <developerConnection>scm:git:https://github.com/naveensundarg/prover.git</developerConnection> |
| 196 | + <url>https://github.com/naveensundarg/prover</url> |
| 197 | + <tag>prover-1.03</tag> |
| 198 | + </scm>--> |
193 | 199 | </project>
|
0 commit comments