cos
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cat.inspiracio</groupId> <artifactId>cos</artifactId> <version>2024.4.0.3</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"> <modelVersion>4.0.0</modelVersion> <groupId>cat.inspiracio</groupId> <artifactId>cos</artifactId> <packaging>jar</packaging> <version>2024.4.0.3</version> <name>Cos</name> <url>https://bitbucket.org/bunkenburg/cos</url> <description> Cos. The version 2024.4.0.3 is for Servlet Spec 4.0.3. </description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>jfinal</id> <name>James</name> <email>jfinal@126.com</email> <url>http://weibo.com/jfinal</url> </developer> <developer> <name>Alexander Bunkenburg</name> <email>alex@inspiracio.cat</email> <organization>inspiració.cat</organization> <organizationUrl>http://www.inspiracio.cat</organizationUrl> </developer> </developers> <issueManagement> <system>Github Issue</system> <url>https://bitbucket.org/bunkenburg/cos/jira</url> </issueManagement> <!-- bitbucket --> <scm> <!-- read-only connection --> <connection>scm:git:git@bitbucket.org:bunkenburg/cos.git</connection> <!-- read and write access connection --> <developerConnection>scm:git:git@bitbucket.org:bunkenburg/cos.git</developerConnection> <!-- web front end --> <url>https://bitbucket.org/bunkenburg/cos</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <!-- http://central.sonatype.org/pages/apache-maven.html Release of a new version: mvn clean deploy --> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <dependencies> <!--junit--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api --> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <version>4.0.3</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <!-- versions --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.16.2</version> <executions> <execution> <phase>validate</phase> <goals> <goal>display-dependency-updates</goal> <goal>display-plugin-updates</goal> </goals> </execution> </executions> </plugin> <!-- enforcer: java version and maven version --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>enforce-versions</id> <phase>validate</phase> <goals><goal>enforce</goal></goals> <configuration> <rules> <requireMavenVersion><version>3.6.3</version></requireMavenVersion> <requireJavaVersion><version>1.8</version></requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <!--compiler--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <source>1.8</source> <target>1.8</target> <encoding>UTF-8</encoding> </configuration> </plugin> <!-- nexus --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!--javadoc--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.7.0</version> <configuration> <!-- 解决 java8 发布到 maven 异常 --> <!--additionalparam>-Xdoclint:none</additionalparam--> <encoding>UTF-8</encoding> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals><goal>jar</goal></goals> <configuration><source>8</source></configuration> </execution> </executions> </plugin> <!--source--> <!-- 安装源码到本地仓库 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals><goal>jar-no-fork</goal></goals> </execution> </executions> </plugin> <!--gpg--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals><goal>sign</goal></goals> </execution> </executions> </plugin> </plugins> </build> </project>