reuse-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.earchitecture.reuse</groupId>
<artifactId>reuse-web</artifactId>
<version>0.1.0.0</version>
</dependency><?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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>reuse-framework</artifactId>
<groupId>com.github.earchitecture</groupId>
<version>0.1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.earchitecture.reuse</groupId>
<artifactId>reuse-web</artifactId>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>com.github.earchitecture.reuse</groupId>
<artifactId>reuse-view</artifactId>
</dependency>
<dependency>
<groupId>com.github.earchitecture.reuse</groupId>
<artifactId>reuse-service</artifactId>
</dependency>
<dependency>
<groupId>com.github.earchitecture.reuse</groupId>
<artifactId>reuse-service</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.earchitecture.reuse</groupId>
<artifactId>reuse-model</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<homedir>../${gpg.homedir}</homedir>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<modules>
<module>reuse-thymeleaf</module>
</modules>
</project>