Show
hide
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>tajin</artifactId>
<groupId>com.ovea.tajin</groupId>
<version>1.0.b9</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>tajin-all</artifactId>
<name>Tajin :: All</name>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<configuration>
<filters>
<filter>
<artifact>com.ovea.tajin:tajin-client</artifact>
<excludes>
<exclude>WEB-INF/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.codehaus.groovy:groovy-all</artifact>
<excludes>
<exclude>overview.html</exclude>
<exclude>overviewj.html</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.ant:ant</artifact>
<excludes>
<exclude>images/**</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer>
<mainClass>com.ovea.tajin.tools.TajinResource</mainClass>
</transformer>
</transformers>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.ovea.tajin</groupId>
<artifactId>tajin-framework</artifactId>
<version>1.0.b9</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.ovea.tajin</groupId>
<artifactId>tajin-client</artifactId>
<version>1.0.b9</version>
<type>war</type>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
|