blob: f0752fd94c25b411b8f4491044f7419c01324fa4 [file] [log] [blame]
<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>
<groupId>org.apache.struts</groupId>
<artifactId>struts-master</artifactId>
<version>14</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>struts-annotations</artifactId>
<version>1.0.9-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Struts Annotations</name>
<url>https://struts.apache.org</url>
<description>
struts-annotations adds annotations processor support for struts based annotated projects,
such as TLD and documentation generation from annotated component classes as used in struts2
</description>
<scm>
<connection>scm:git:https://gitbox.apache.org/repos/asf/struts-annotations.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/struts-annotations.git</developerConnection>
<url>https://github.com/apache/struts-annotations.git</url>
<tag>HEAD</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<freemarker.version>2.3.31</freemarker.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>${freemarker.version}</version>
</dependency>
</dependencies>
</project>