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-framework-pom</artifactId>
<groupId>com.ovea.tajin.framework</groupId>
<version>2.21</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>tajin-framework-all</artifactId>
<name>Tajin :: Framework :: All</name>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<configuration>
<createSourcesJar>true</createSourcesJar>
<shadeSourcesContent>true</shadeSourcesContent>
<createDependencyReducedPom>true</createDependencyReducedPom>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>images/**</exclude>
<exclude>overview.html</exclude>
<exclude>overviewj.html</exclude>
<exclude>about.html</exclude>
<exclude>LICENSE</exclude>
<exclude>NOTICE</exclude>
<exclude>jetty-dir.css</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.txt</exclude>
<exclude>META-INF/*.tld</exclude>
<exclude>META-INF/NOTICE</exclude>
<exclude>META-INF/LICENSE</exclude>
<exclude>META-INF/DEPENDENCIES</exclude>
<exclude>META-INF/eclipse.inf</exclude>
<exclude>about_files/**</exclude>
<exclude>module.properties</exclude>
<exclude>plugin.properties</exclude>
</excludes>
</filter>
<filter>
<artifact>org.codehaus.groovy:groovy-all</artifact>
<excludes>
<exclude>META-INF/services/org.codehaus.groovy.runtime.ExtensionModule</exclude>
</excludes>
</filter>
<filter>
<artifact>com.ovea.tajin.framework:tajin-framework</artifact>
<excludes>
<exclude>META-INF/services/org.codehaus.groovy.runtime.ExtensionModule</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer />
<transformer>
<mainClass>com.ovea.tajin.framework.app.TajinApplication</mainClass>
</transformer>
</transformers>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.ovea.tajin.framework</groupId>
<artifactId>tajin-framework</artifactId>
<version>2.21</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
|