struts-annotations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.struts</groupId> <artifactId>struts-annotations</artifactId> <version>2.0</version> </dependency>
<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>2.0</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>STRUTS_ANNOTATIONS_2_0</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <freemarker.version>2.3.31</freemarker.version> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</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> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.9.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.1.1</version> <scope>test</scope> </dependency> </dependencies> </project>