|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 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 | + |
| 7 | + <groupId>it.giacomobergami</groupId> |
| 8 | + <artifactId>datatypelang</artifactId> |
| 9 | + <version>1.0-SNAPSHOT</version> |
| 10 | + |
| 11 | + <properties> |
| 12 | + <maven.compiler.source>17</maven.compiler.source> |
| 13 | + <maven.compiler.target>17</maven.compiler.target> |
| 14 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | + </properties> |
| 16 | +<!-- <build>--> |
| 17 | +<!-- <plugins>--> |
| 18 | +<!-- <plugin>--> |
| 19 | +<!-- <groupId>org.apache.maven.plugins</groupId>--> |
| 20 | +<!-- <artifactId>maven-compiler-plugin</artifactId>--> |
| 21 | +<!-- <configuration>--> |
| 22 | +<!-- <source>1.8</source>--> |
| 23 | +<!-- <target>1.8</target>--> |
| 24 | +<!-- </configuration>--> |
| 25 | +<!-- </plugin>--> |
| 26 | +<!-- </plugins>--> |
| 27 | +<!-- </build>--> |
| 28 | + |
| 29 | + <dependencies> |
| 30 | +<dependency> |
| 31 | + <groupId>javax.xml.soap</groupId> |
| 32 | + <artifactId>javax.xml.soap-api</artifactId> |
| 33 | + <version>1.4.0</version> |
| 34 | +</dependency> |
| 35 | +<dependency> |
| 36 | + <groupId>org.checkerframework</groupId> |
| 37 | + <artifactId>checker</artifactId> |
| 38 | + <version>1.9.11</version> |
| 39 | +</dependency> |
| 40 | +<!-- Thanks for using https://jar-download.com --> |
| 41 | + |
| 42 | + <dependency> |
| 43 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 44 | + <artifactId>jackson-databind</artifactId> |
| 45 | + <version>2.6.3</version> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>com.google.guava</groupId> |
| 49 | + <artifactId>guava</artifactId> |
| 50 | + <version>20.0</version> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>com.google.guava</groupId> |
| 54 | + <artifactId>guava-collections</artifactId> |
| 55 | + <version>r03</version> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.apache.commons</groupId> |
| 59 | + <artifactId>commons-lang3</artifactId> |
| 60 | + <version>3.5</version> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>com.github.javaparser</groupId> |
| 64 | + <artifactId>javaparser-core</artifactId> |
| 65 | + <version>3.0.0-RC.2</version> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>com.ibm.icu</groupId> |
| 69 | + <artifactId>icu4j</artifactId> |
| 70 | + <version>58.2</version> |
| 71 | + </dependency> |
| 72 | + <!-- https://mvnrepository.com/artifact/org.antlr/antlr4 --> |
| 73 | + <dependency> |
| 74 | + <groupId>org.antlr</groupId> |
| 75 | + <artifactId>antlr4</artifactId> |
| 76 | + <version>4.11.1</version> |
| 77 | + </dependency> |
| 78 | + <!-- https://mvnrepository.com/artifact/com.esotericsoftware.yamlbeans/yamlbeans --> |
| 79 | + <dependency> |
| 80 | + <groupId>com.esotericsoftware.yamlbeans</groupId> |
| 81 | + <artifactId>yamlbeans</artifactId> |
| 82 | + <version>1.17</version> |
| 83 | + </dependency> |
| 84 | + |
| 85 | + <dependency> |
| 86 | + <groupId>edu.stanford.nlp</groupId> |
| 87 | + <artifactId>stanford-corenlp</artifactId> |
| 88 | + <version>3.6.0</version> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>edu.stanford.nlp</groupId> |
| 92 | + <artifactId>stanford-parser</artifactId> |
| 93 | + <version>3.6.0</version> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>edu.stanford.nlp</groupId> |
| 97 | + <artifactId>stanford-kbp</artifactId> |
| 98 | + <version>1.0.0</version> |
| 99 | + </dependency> |
| 100 | + |
| 101 | + |
| 102 | + <!-- <dependency>--> |
| 103 | + <!-- <groupId>edu.stanford.nlp</groupId>--> |
| 104 | + <!-- <artifactId>stanford-kbp</artifactId>--> |
| 105 | + <!-- <version>1.0.0</version>--> |
| 106 | + <!-- </dependency>--> |
| 107 | + <dependency> |
| 108 | + <groupId>com.googlecode.json-simple</groupId> |
| 109 | + <artifactId>json-simple</artifactId> |
| 110 | + <version>1.1.1</version> |
| 111 | + </dependency> |
| 112 | + <dependency> |
| 113 | + <groupId>com.google.code.gson</groupId> |
| 114 | + <artifactId>gson</artifactId> |
| 115 | + <version>2.8.9</version> |
| 116 | + </dependency> |
| 117 | + <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-csv --> |
| 118 | + <dependency> |
| 119 | + <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 120 | + <artifactId>jackson-dataformat-csv</artifactId> |
| 121 | + <version>2.15.1</version> |
| 122 | + </dependency> |
| 123 | + <dependency> |
| 124 | + <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 125 | + <artifactId>jackson-dataformat-xml</artifactId> |
| 126 | + <version>2.11.1</version> |
| 127 | + </dependency> |
| 128 | + <dependency> |
| 129 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 130 | + <artifactId>jackson-annotations</artifactId> |
| 131 | + <version>2.13.2</version> |
| 132 | + </dependency> |
| 133 | + <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> |
| 134 | + <dependency> |
| 135 | + <groupId>org.apache.commons</groupId> |
| 136 | + <artifactId>commons-lang3</artifactId> |
| 137 | + <version>3.12.0</version> |
| 138 | + </dependency> |
| 139 | + <dependency> |
| 140 | + <groupId>com.sun.xml.bind</groupId> |
| 141 | + <artifactId>jaxb-core</artifactId> |
| 142 | + <version>2.3.0.1</version> |
| 143 | + </dependency> |
| 144 | + <dependency> |
| 145 | + <groupId>javax.xml.bind</groupId> |
| 146 | + <artifactId>jaxb-api</artifactId> |
| 147 | + <version>2.3.1</version> |
| 148 | + </dependency> |
| 149 | + <dependency> |
| 150 | + <groupId>com.sun.xml.bind</groupId> |
| 151 | + <artifactId>jaxb-impl</artifactId> |
| 152 | + <version>2.3.1</version> |
| 153 | + </dependency> |
| 154 | + <dependency> |
| 155 | + <groupId>org.javassist</groupId> |
| 156 | + <artifactId>javassist</artifactId> |
| 157 | + <version>3.25.0-GA</version> |
| 158 | + </dependency> |
| 159 | + <dependency> |
| 160 | + <groupId>commons-fileupload</groupId> |
| 161 | + <artifactId>commons-fileupload</artifactId> |
| 162 | + <version>1.3.3</version> |
| 163 | + </dependency> |
| 164 | + |
| 165 | + <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations --> |
| 166 | + <dependency> |
| 167 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 168 | + <artifactId>jackson-annotations</artifactId> |
| 169 | + <version>2.14.2</version> |
| 170 | + </dependency> |
| 171 | + <dependency> |
| 172 | + <groupId>org.jetbrains</groupId> |
| 173 | + <artifactId>annotations</artifactId> |
| 174 | + <version>15.0</version> |
| 175 | + </dependency> |
| 176 | + <!-- https://mvnrepository.com/artifact/com.google.guava/guava --> |
| 177 | + <dependency> |
| 178 | + <groupId>com.google.guava</groupId> |
| 179 | + <artifactId>guava</artifactId> |
| 180 | + <version>31.1-jre</version> |
| 181 | + </dependency> |
| 182 | + <dependency> |
| 183 | + <groupId>org.apache.logging.log4j</groupId> |
| 184 | + <artifactId>log4j-api</artifactId> |
| 185 | + <version>2.6.1</version> |
| 186 | + </dependency> |
| 187 | + <dependency> |
| 188 | + <groupId>org.apache.logging.log4j</groupId> |
| 189 | + <artifactId>log4j-core</artifactId> |
| 190 | + <version>2.6.1</version> |
| 191 | + </dependency> |
| 192 | + <dependency> |
| 193 | + <groupId>com.htyleo.extsort</groupId> |
| 194 | + <artifactId>extsort</artifactId> |
| 195 | + <version>1.0.0</version> |
| 196 | + </dependency> |
| 197 | + <!-- https://mvnrepository.com/artifact/org.jgrapht/jgrapht-core --> |
| 198 | + <dependency> |
| 199 | + <groupId>org.jgrapht</groupId> |
| 200 | + <artifactId>jgrapht-core</artifactId> |
| 201 | + <version>1.5.1</version> |
| 202 | + </dependency> |
| 203 | + <!-- https://mvnrepository.com/artifact/com.bericotech/clavin --> |
| 204 | + <dependency> |
| 205 | + <groupId>com.bericotech</groupId> |
| 206 | + <artifactId>clavin</artifactId> |
| 207 | + <version>2.1.0</version> |
| 208 | + </dependency> |
| 209 | + <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-base --> |
| 210 | + <dependency> |
| 211 | + <groupId>org.openjfx</groupId> |
| 212 | + <artifactId>javafx-base</artifactId> |
| 213 | + <version>20-ea+11</version> |
| 214 | + </dependency> |
| 215 | + <dependency> |
| 216 | + <groupId>edu.stanford.nlp</groupId> |
| 217 | + <artifactId>stanford-corenlp</artifactId> |
| 218 | + <version>4.5.2</version> |
| 219 | + </dependency> |
| 220 | + <dependency> |
| 221 | + <groupId>edu.stanford.nlp</groupId> |
| 222 | + <artifactId>stanford-corenlp</artifactId> |
| 223 | + <version>4.5.2</version> |
| 224 | + <classifier>models</classifier> |
| 225 | + </dependency> |
| 226 | + |
| 227 | + |
| 228 | + |
| 229 | + </dependencies> |
| 230 | + |
| 231 | + |
| 232 | +</project> |
0 commit comments