Joachim Bingel | 4b405f5 | 2013-11-15 15:29:30 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Joachim Bingel | a6954de | 2015-03-20 16:37:37 +0100 | [diff] [blame] | 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 | <!-- <parent> <groupId>KorAP-modules</groupId> <artifactId>KorAP-core-modules</artifactId> |
| 5 | <version>1.1</version> </parent> --> |
Michael Hanl | 10d2150 | 2014-02-07 20:09:58 +0000 | [diff] [blame] | 6 | |
Michael Hanl | f33f706 | 2015-06-24 21:14:26 +0200 | [diff] [blame] | 7 | <groupId>de.ids_mannheim.korap</groupId> |
Joachim Bingel | a6954de | 2015-03-20 16:37:37 +0100 | [diff] [blame] | 8 | <artifactId>Koral</artifactId> |
Michael Hanl | faae018 | 2015-06-26 16:18:06 +0200 | [diff] [blame] | 9 | <version>0.21</version> |
Joachim Bingel | a6954de | 2015-03-20 16:37:37 +0100 | [diff] [blame] | 10 | <packaging>jar</packaging> |
| 11 | <name>Koral</name> |
| 12 | <url>http://maven.apache.org</url> |
| 13 | <repositories> |
| 14 | <repository> |
| 15 | <id>id-maven-repo</id> |
| 16 | <url>http://maven.indexdata.com</url> |
| 17 | </repository> |
| 18 | </repositories> |
| 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <groupId>org.antlr</groupId> |
| 22 | <artifactId>antlr4-runtime</artifactId> |
Jim O'Regan | c61a1df | 2016-02-12 12:22:24 +0000 | [diff] [blame^] | 23 | <version>4.2</version> |
Joachim Bingel | a6954de | 2015-03-20 16:37:37 +0100 | [diff] [blame] | 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>org.antlr</groupId> |
| 27 | <artifactId>antlr4-maven-plugin</artifactId> |
Jim O'Regan | c61a1df | 2016-02-12 12:22:24 +0000 | [diff] [blame^] | 28 | <version>4.2</version> |
Joachim Bingel | a6954de | 2015-03-20 16:37:37 +0100 | [diff] [blame] | 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>org.antlr</groupId> |
| 32 | <artifactId>antlr-runtime</artifactId> |
| 33 | <version>3.5</version> |
| 34 | <scope>compile</scope> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>com.google.guava</groupId> |
| 38 | <artifactId>guava</artifactId> |
| 39 | <version>15.0</version> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>com.fasterxml.jackson.core</groupId> |
| 43 | <artifactId>jackson-core</artifactId> |
| 44 | <version>2.3.3</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>com.fasterxml.jackson.core</groupId> |
| 48 | <artifactId>jackson-annotations</artifactId> |
| 49 | <version>2.3.3</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>com.fasterxml.jackson.core</groupId> |
| 53 | <artifactId>jackson-databind</artifactId> |
| 54 | <version>2.3.3</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>junit</groupId> |
| 58 | <artifactId>junit</artifactId> |
| 59 | <version>4.11</version> |
| 60 | <scope>test</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>commons-lang</groupId> |
| 64 | <artifactId>commons-lang</artifactId> |
| 65 | <version>2.6</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.z3950.zing</groupId> |
| 69 | <artifactId>cql-java</artifactId> |
| 70 | <version>1.12</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.projectlombok</groupId> |
| 74 | <artifactId>lombok</artifactId> |
| 75 | <version>0.11.8</version> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>log4j</groupId> |
| 79 | <artifactId>log4j</artifactId> |
| 80 | <version>1.2.17</version> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>log4j</groupId> |
| 84 | <artifactId>apache-log4j-extras</artifactId> |
| 85 | <version>1.2.17</version> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.slf4j</groupId> |
| 89 | <artifactId>slf4j-api</artifactId> |
| 90 | <version>1.7.5</version> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.slf4j</groupId> |
| 94 | <artifactId>slf4j-log4j12</artifactId> |
| 95 | <version>1.7.5</version> |
| 96 | </dependency> |
| 97 | </dependencies> |
| 98 | <build> |
| 99 | <sourceDirectory>${basedir}/src/main/java</sourceDirectory> |
| 100 | <outputDirectory>${basedir}/target/classes</outputDirectory> |
| 101 | <plugins> |
Michael Hanl | e91345d | 2015-10-22 17:55:27 +0200 | [diff] [blame] | 102 | <plugin> |
| 103 | <groupId>org.apache.maven.plugins</groupId> |
| 104 | <artifactId>maven-compiler-plugin</artifactId> |
| 105 | <version>3.3</version> |
| 106 | <configuration> |
| 107 | <compilerVersion>1.7</compilerVersion> |
| 108 | <source>1.7</source> |
| 109 | <target>1.7</target> |
| 110 | </configuration> |
| 111 | </plugin> |
Joachim Bingel | a6954de | 2015-03-20 16:37:37 +0100 | [diff] [blame] | 112 | <!-- |
| 113 | Formatter plugin for Eclipse based coding conventions |
| 114 | http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html |
Michael Hanl | e91345d | 2015-10-22 17:55:27 +0200 | [diff] [blame] | 115 | --> |
Joachim Bingel | a6954de | 2015-03-20 16:37:37 +0100 | [diff] [blame] | 116 | <plugin> |
| 117 | <groupId>com.googlecode.maven-java-formatter-plugin</groupId> |
| 118 | <artifactId>maven-java-formatter-plugin</artifactId> |
| 119 | <version>0.4</version> |
| 120 | <configuration> |
| 121 | <configFile>${project.basedir}/Format.xml</configFile> |
| 122 | <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion> |
| 123 | <compilerSource>1.7</compilerSource> |
| 124 | <compilerCompliance>1.7</compilerCompliance> |
| 125 | <compilerTargetPlatform>1.7</compilerTargetPlatform> |
| 126 | </configuration> |
| 127 | </plugin> |
| 128 | <plugin> |
| 129 | <artifactId>maven-dependency-plugin</artifactId> |
| 130 | <executions> |
| 131 | <execution> |
| 132 | <phase>install</phase> |
| 133 | <goals> |
| 134 | <goal>copy-dependencies</goal> |
| 135 | </goals> |
| 136 | <configuration> |
| 137 | <outputDirectory>${project.build.directory}/../lib</outputDirectory> |
| 138 | </configuration> |
| 139 | </execution> |
| 140 | </executions> |
| 141 | </plugin> |
| 142 | <plugin> |
| 143 | <groupId>org.apache.maven.plugins</groupId> |
| 144 | <artifactId>maven-jar-plugin</artifactId> |
| 145 | <version>2.5</version> |
| 146 | <configuration> |
| 147 | <archive> |
| 148 | <manifest> |
| 149 | <addClasspath>true</addClasspath> |
| 150 | <classpathPrefix>../lib/</classpathPrefix> |
| 151 | <mainClass>de.ids_mannheim.korap.query.serialize.QuerySerializer</mainClass> |
| 152 | </manifest> |
| 153 | </archive> |
| 154 | </configuration> |
| 155 | </plugin> |
| 156 | <plugin> |
| 157 | <!-- This plugin will help to build the ANTLR4 grammar on the fly. The |
| 158 | recipe is based on http://stackoverflow.com/questions/15310628/ customize-maven-to-automatically-create-antlr4-grammar-java-files-on-build --> |
| 159 | <groupId>org.antlr</groupId> |
| 160 | <artifactId>antlr4-maven-plugin</artifactId> |
Jim O'Regan | c61a1df | 2016-02-12 12:22:24 +0000 | [diff] [blame^] | 161 | <version>4.2</version> |
Joachim Bingel | a6954de | 2015-03-20 16:37:37 +0100 | [diff] [blame] | 162 | <executions> |
| 163 | <execution> |
| 164 | <id>poliqarpplus</id> |
| 165 | <goals> |
| 166 | <goal>antlr4</goal> |
| 167 | </goals> |
| 168 | <configuration> |
| 169 | <sourceDirectory>${basedir}/src/main/antlr/poliqarpplus</sourceDirectory> |
| 170 | <outputDirectory>${basedir}/src/main/java/de/ids_mannheim/korap/query/parse/poliqarpplus</outputDirectory> |
| 171 | <libDirectory>${basedir}/src/main/antlr/poliqarpplus</libDirectory> |
| 172 | </configuration> |
| 173 | <phase>generate-sources</phase> |
| 174 | </execution> |
| 175 | <execution> |
| 176 | <id>annis</id> |
| 177 | <goals> |
| 178 | <goal>antlr4</goal> |
| 179 | </goals> |
| 180 | <configuration> |
| 181 | <sourceDirectory>${basedir}/src/main/antlr/annis</sourceDirectory> |
| 182 | <outputDirectory>${basedir}/src/main/java/de/ids_mannheim/korap/query/parse/annis</outputDirectory> |
| 183 | <libDirectory>${basedir}/src/main/antlr/annis</libDirectory> |
| 184 | </configuration> |
| 185 | <phase>generate-sources</phase> |
| 186 | </execution> |
| 187 | <execution> |
| 188 | <id>collection</id> |
| 189 | <goals> |
| 190 | <goal>antlr4</goal> |
| 191 | </goals> |
| 192 | <configuration> |
| 193 | <sourceDirectory>${basedir}/src/main/antlr/collection</sourceDirectory> |
| 194 | <outputDirectory>${basedir}/src/main/java/de/ids_mannheim/korap/query/parse/collection</outputDirectory> |
| 195 | <libDirectory>${basedir}/src/main/antlr/collection</libDirectory> |
| 196 | </configuration> |
| 197 | <phase>generate-sources</phase> |
| 198 | </execution> |
| 199 | </executions> |
| 200 | </plugin> |
| 201 | <plugin> |
| 202 | <!-- This plugin will help to build the ANTLR3 grammar on the fly. The |
| 203 | recipe is based on http://stackoverflow.com/questions/15310628/ customize-maven-to-automatically-create-antlr4-grammar-java-files-on-build --> |
| 204 | <groupId>org.antlr</groupId> |
| 205 | <artifactId>antlr3-maven-plugin</artifactId> |
| 206 | <version>3.5.1</version> |
| 207 | <configuration> |
| 208 | <sourceDirectory>${basedir}/src/main/antlr/cosmas</sourceDirectory> |
| 209 | <outputDirectory>${basedir}/src/main/java/de/ids_mannheim/korap/query/parse/cosmas</outputDirectory> |
| 210 | <libDirectory>${basedir}/src/main/antlr</libDirectory> |
| 211 | </configuration> |
| 212 | |
| 213 | <executions> |
| 214 | <execution> |
| 215 | <goals> |
| 216 | <goal>antlr</goal> |
| 217 | </goals> |
| 218 | <phase>generate-sources</phase> |
| 219 | </execution> |
| 220 | </executions> |
| 221 | |
| 222 | </plugin> |
| 223 | <plugin> |
| 224 | <artifactId>maven-compiler-plugin</artifactId> |
| 225 | <version>2.3.2</version> |
| 226 | <configuration> |
| 227 | <source>1.7</source> |
| 228 | <target>1.7</target> |
| 229 | <!-- excludes> <exclude>**/CosmasTree.java</exclude> </excludes --> |
| 230 | </configuration> |
| 231 | </plugin> |
| 232 | </plugins> |
| 233 | </build> |
Joachim Bingel | 4b405f5 | 2013-11-15 15:29:30 +0000 | [diff] [blame] | 234 | </project> |