displaytag
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>it.micegroup.displaytag</groupId> <artifactId>displaytag</artifactId> <version>2.4</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>it.micegroup.displaytag</groupId> <artifactId>displaytag</artifactId> <version>2.4</version> <name>Voila displaytag library</name> <description> The display tag library is an open source suite of custom tags that provide high-level web presentation patterns which will work in an MVC model. The library provides a significant amount of functionality while still being easy to use. </description> <url>https://devops.micegroup.it/gitlab/mice/displaytag</url> <inceptionYear>2020</inceptionYear> <licenses> <license> <name>MICE</name> <url>http://www.micegroup.it/voila/license.html</url> <comments>A business-friendly OSS license</comments> </license> </licenses> <organization> <name>Mice S.r.l</name> <url>http://www.micegroup.it</url> </organization> <developers> <developer> <id>emilio.dolce</id> <name>Emilio Dolce</name> <email>emilio.dolce@micegroup.it</email> <organization>MICE S.r.l.</organization> <organizationUrl>http://www.micegroup.it</organizationUrl> <roles> <role>architet</role> <role>developer</role> </roles> <timezone>Europe/Rome</timezone> </developer> </developers> <properties> <java.version>17</java.version> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.javadoc.skip>false</maven.javadoc.skip> </properties> <build> <sourceDirectory>src/java</sourceDirectory> <resources> <resource> <directory>src/java</directory> <includes> <include>**/*.tld</include> <include>**/*.properties</include> </includes> </resource> <resource> <directory>src/resources</directory> <includes> <include>**/*.tld</include> <include>**/*.properties</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.0-M1</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>oss</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <failOnError>false</failOnError> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <scm> <connection>scm:git:https://devops.micegroup.it/gitlab/mice/displaytag.git</connection> <url>https://devops.micegroup.it/gitlab/mice/displaytag.git</url> <tag>v2.4</tag> </scm> <distributionManagement> <!-- use the following if you're not using a snapshot version. --> <!-- <repository> --> <!-- <id>nexus</id> --> <!-- <name>RepositoryProxy</name> --> <!-- <url>${miceReleasesRepoUrl}</url> --> <!-- </repository> --> <!-- <snapshotRepository> --> <!-- <id>nexus</id> --> <!-- <name>RepositoryProxy</name> --> <!-- <url>${miceSnapshotsRepoUrl}</url> --> <!-- </snapshotRepository> --> <repository> <id>oss</id> <name>RepositoryProxy</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <!-- use the following if you ARE using a snapshot version. --> <snapshotRepository> <id>oss</id> <name>RepositoryProxy</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <!-- <site> <id>apache.website</id> <name>Apache Website</name> <url>/</url> </site> --> </distributionManagement> <dependencies> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.9.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox</artifactId> <version>2.0.31</version> </dependency> <!-- <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5.5.13.3</version> </dependency> --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>5.3.34</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.34</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts-core</artifactId> <version>1.3.10</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.opensymphony</groupId> <artifactId>webwork</artifactId> <version>2.2.6</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.acegisecurity</groupId> <artifactId>acegi-security</artifactId> <version>1.0.7</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <scope>provided</scope> </dependency> </dependencies> </project>