Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
PrizmCore/pom.xml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
276 lines (271 sloc)
10.8 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>prizm</groupId> | |
<artifactId>PrizmCore</artifactId> | |
<version>1.10.4.6</version> | |
<packaging>jar</packaging> | |
<name>PrizmCore</name> | |
<url>http://maven.apache.org</url> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<maven.compiler.source>1.8</maven.compiler.source> | |
<maven.compiler.target>1.8</maven.compiler.target> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>com.googlecode.json-simple</groupId> | |
<artifactId>json-simple</artifactId> | |
<version>1.1.1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.tika</groupId> | |
<artifactId>tika-core</artifactId> | |
<version>1.13</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.tika</groupId> | |
<artifactId>tika-parsers</artifactId> | |
<version>1.13</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>javax.servlet-api</artifactId> | |
<version>3.1.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.bouncycastle</groupId> | |
<artifactId>bcprov-jdk15on</artifactId> | |
<version>1.57</version> | |
</dependency> | |
<!-- <dependency> | |
<groupId>com.h2database</groupId> | |
<artifactId>h2</artifactId> | |
<version>1.4.196</version> | |
<type>jar</type> | |
</dependency>--> | |
<dependency> | |
<groupId>com.h2database</groupId> | |
<artifactId>h2</artifactId> | |
<version>1.4.196</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.lucene</groupId> | |
<artifactId>lucene-core</artifactId> | |
<version>5.3.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.lucene</groupId> | |
<artifactId>lucene-queryparser</artifactId> | |
<version>5.3.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-security</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-continuation</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-http</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-io</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-server</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-util</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.lucene</groupId> | |
<artifactId>lucene-analyzers-common</artifactId> | |
<version>5.3.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.lucene</groupId> | |
<artifactId>lucene-queries</artifactId> | |
<version>5.3.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-servlet</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-servlets</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-client</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-proxy</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>com.google.zxing</groupId> | |
<artifactId>core</artifactId> | |
<version>3.3.0</version> | |
</dependency> | |
<dependency> | |
<groupId>com.google.zxing</groupId> | |
<artifactId>javase</artifactId> | |
<version>3.3.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.bitlet</groupId> | |
<artifactId>weupnp</artifactId> | |
<version>0.1.4</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty.websocket</groupId> | |
<artifactId>websocket-servlet</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty.websocket</groupId> | |
<artifactId>websocket-client</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-api</artifactId> | |
<version>1.7.25</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-jdk14</artifactId> | |
<version>1.7.25</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty.websocket</groupId> | |
<artifactId>websocket-common</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty.websocket</groupId> | |
<artifactId>websocket-api</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.jetty.websocket</groupId> | |
<artifactId>websocket-server</artifactId> | |
<version>9.3.20.v20170531</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.6.1</version> | |
</plugin> | |
<!-- <plugin> | |
<groupId>com.github.wvengen</groupId> | |
<artifactId>proguard-maven-plugin</artifactId> | |
<version>2.0.13</version> | |
<dependencies> | |
</dependencies> | |
<executions> | |
<execution> | |
<phase>package</phase> | |
<goals> | |
<goal>proguard</goal> | |
</goals> | |
</execution> | |
</executions> | |
<configuration> | |
<proguardVersion>5.3.2</proguardVersion> | |
<options> | |
<option>-keep class prizm.util.** { *; }</option> | |
<option>-keep class prizm.crypto.** { *; }</option> | |
<option>-keep class prizm.peer.** { *;}</option> | |
<option>-keep class prizm.db.** { *; }</option> | |
<option>-keep class prizm.addons.** { *;}</option> | |
<option>-keep class prizm.env.** { *;}</option> | |
<option>-keep class prizm.env.service.** { *;}</option> | |
<option>-keep public class prizm.Prizm{ *;}</option> | |
<option>-keep public class prizm.Transaction{ *;}</option> | |
</options> | |
<libs> | |
<lib>${java.home}/lib/rt.jar</lib> | |
<lib>${java.home}/lib/jce.jar</lib> | |
</libs> | |
</configuration> | |
</plugin>--> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-jar-plugin</artifactId> | |
<version>3.0.2</version> | |
<configuration> | |
<archive> | |
<manifest> | |
<!--<addClasspath>true</addClasspath>--> | |
<!--<classpathPrefix>./lib/</classpathPrefix>--> | |
<mainClass>prizm.Prizm</mainClass> | |
</manifest> | |
<manifestEntries> | |
<Built-By>John Zoidberg</Built-By> | |
</manifestEntries> | |
</archive> | |
<excludes> | |
<exclude>META-INF/maven/**</exclude> | |
</excludes> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-shade-plugin</artifactId> | |
<version>3.0.0</version> | |
<executions> | |
<execution> | |
<phase>package</phase> | |
<goals> | |
<goal>shade</goal> | |
</goals> | |
<configuration> | |
<filters> | |
<filter> | |
<artifact>junit:junit</artifact> | |
<includes> | |
<include>junit/framework/**</include> | |
<include>org/junit/**</include> | |
</includes> | |
<excludes> | |
<exclude>org/junit/experimental/**</exclude> | |
<exclude>org/junit/runners/**</exclude> | |
</excludes> | |
</filter> | |
<filter> | |
<artifact>*:*</artifact> | |
<excludes> | |
<exclude>META-INF/*.SF</exclude> | |
<exclude>META-INF/*.DSA</exclude> | |
<exclude>META-INF/*.RSA</exclude> | |
</excludes> | |
</filter> | |
</filters> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |