Skip to content

Instantly share code, notes, and snippets.

@vvakame
Created April 13, 2011 17:11
Show Gist options
  • Save vvakame/917926 to your computer and use it in GitHub Desktop.
Save vvakame/917926 to your computer and use it in GitHub Desktop.
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>jsonpullparser-apt</artifactId>
<packaging>jar</packaging>
<parent>
<groupId>net.vvakame</groupId>
<artifactId>jsonpullparser-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>net.vvakame:jsonpullparser-core</artifact>
<artifact>commons-collections:commons-collections</artifact>
<artifact>commons-lang:commons-lang</artifact>
<artifact>org.mvel:mvel2</artifact>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.vvakame</groupId>
<artifactId>jsonpullparser-core</artifactId>
<version>${jsonpullparser.version}</version>
</dependency>
<dependency>
<groupId>org.seasar.aptina</groupId>
<artifactId>aptina-commons</artifactId>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seasar.aptina</groupId>
<artifactId>aptina-unit</artifactId>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mvel</groupId>
<artifactId>mvel2</artifactId>
<version>2.0.19</version>
</dependency>
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>core</artifactId>
<version>[3.0,)</version>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment