<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>mocca</artifactId> <groupId>at.gv.egiz</groupId> <version>1.3.4-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>at.gv.egiz</groupId> <artifactId>BKULocal</artifactId> <packaging>war</packaging> <name>BKU Local</name> <version>1.3.4-SNAPSHOT</version> <description>MOCCA Local</description> <build> <plugins> <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <!-- TODO: load webapp jars via jnlp <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes--> <archive> <manifestEntries> <Implementation-Build>${project.version}-r${buildNumber}</Implementation-Build> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> </executions> <configuration> <doCheck>false</doCheck> <doUpdate>false</doUpdate> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <executions> <execution> <id>copy-help</id> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includeArtifactIds>BKUHelp</includeArtifactIds> <includeGroupIds>at.gv.egiz</includeGroupIds> <excludes>META-INF/</excludes> <outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory> </configuration> </execution> <execution> <!-- certificates in webapp filesystem (default trust/certstores) --> <id>copy-certificates</id> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includeArtifactIds>BKUCertificates</includeArtifactIds> <includeGroupIds>at.gv.egiz</includeGroupIds> <excludes>META-INF/</excludes> <outputDirectory>${project.build.directory}/classes</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>at.gv.egiz</groupId> <artifactId>STAL</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>at.gv.egiz</groupId> <artifactId>bkucommon</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>at.gv.egiz</groupId> <artifactId>smcc</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>at.gv.egiz</groupId> <artifactId>smccSTAL</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>at.gv.egiz</groupId> <artifactId>BKUGuiExt</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>at.gv.egiz</groupId> <artifactId>smccSTALExt</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>at.gv.egiz</groupId> <artifactId>BKUViewer</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <artifactId>BKUHelp</artifactId> <groupId>at.gv.egiz</groupId> <version>${project.parent.version}</version> </dependency> <dependency> <artifactId>BKUCertificates</artifactId> <groupId>at.gv.egiz</groupId> <scope>provided</scope> </dependency> <dependency> <groupId>iaik</groupId> <artifactId>iaik_xsect</artifactId> </dependency> <dependency> <groupId>iaik</groupId> <artifactId>iaik_jce_full_signed</artifactId> </dependency> <dependency> <groupId>iaik</groupId> <artifactId>iaik_ecc_signed</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <scope>compile</scope> </dependency> </dependencies> <profiles> <profile> <id>tomcat-deploy</id> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <scope>compile</scope> </dependency> </dependencies> <properties> <netbeans.hint.deploy.server>Tomcat60</netbeans.hint.deploy.server> </properties> </profile> </profiles> </project>