test(cache): 修复CacheConfigTest边界值测试
- 修改 shouldVerifyCacheManager_withMaximumIntegerTtl 为 shouldVerifyCacheManager_withMaximumAllowedTtl - 使用正确的最大TTL值(10080分钟,7天)而不是 Integer.MAX_VALUE - 新增 shouldThrowException_whenTtlExceedsMaximum 测试验证边界检查 - 所有1266个测试用例通过 - 覆盖率: 指令81.89%, 行88.48%, 分支51.55% docs: 添加项目状态报告 - 生成 PROJECT_STATUS_REPORT.md 详细记录项目当前状态 - 包含质量指标、已完成功能、待办事项和技术债务
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:39:19 CST 2026
|
||||
aether-0.9.0.M2.pom>aliyunmaven=
|
||||
747
.m2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom
Normal file
747
.m2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom
Normal file
@@ -0,0 +1,747 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
~ Copyright (c) 2010, 2013 Sonatype, Inc.
|
||||
~ All rights reserved. This program and the accompanying materials
|
||||
~ are made available under the terms of the Eclipse Public License v1.0
|
||||
~ which accompanies this distribution, and is available at
|
||||
~ http://www.eclipse.org/legal/epl-v10.html
|
||||
~
|
||||
~ Contributors:
|
||||
~ Sonatype, Inc. - initial API and implementation
|
||||
-->
|
||||
|
||||
<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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<artifactId>aether</artifactId>
|
||||
<version>0.9.0.M2</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Aether</name>
|
||||
<description>
|
||||
The parent and aggregator for the repository system.
|
||||
</description>
|
||||
<url>http://www.eclipse.org/aether/</url>
|
||||
<inceptionYear>2010</inceptionYear>
|
||||
|
||||
<organization>
|
||||
<name>The Eclipse Foundation</name>
|
||||
<url>http://www.eclipse.org/</url>
|
||||
</organization>
|
||||
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>Aether Developer List</name>
|
||||
<subscribe>https://dev.eclipse.org/mailman/listinfo/aether-dev</subscribe>
|
||||
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/aether-dev</unsubscribe>
|
||||
<post>aether-dev@eclipse.org</post>
|
||||
<archive>http://dev.eclipse.org/mhonarc/lists/aether-dev/</archive>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Aether User List</name>
|
||||
<subscribe>https://dev.eclipse.org/mailman/listinfo/aether-users</subscribe>
|
||||
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/aether-users</unsubscribe>
|
||||
<post>aether-users@eclipse.org</post>
|
||||
<archive>http://dev.eclipse.org/mhonarc/lists/aether-users/</archive>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Aether Commit Notification List</name>
|
||||
<subscribe>https://dev.eclipse.org/mailman/listinfo/aether-commit</subscribe>
|
||||
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/aether-commit</unsubscribe>
|
||||
<archive>http://dev.eclipse.org/mhonarc/lists/aether-commit/</archive>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Aether CI Notification List</name>
|
||||
<subscribe>https://dev.eclipse.org/mailman/listinfo/aether-build</subscribe>
|
||||
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/aether-build</unsubscribe>
|
||||
<archive>http://dev.eclipse.org/mhonarc/lists/aether-build/</archive>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git://git.eclipse.org/gitroot/aether/aether-core.git</connection>
|
||||
<developerConnection>scm:git:ssh://git.eclipse.org/gitroot/aether/aether-core.git</developerConnection>
|
||||
<url>http://git.eclipse.org/c/aether/aether-core.git/tree/</url>
|
||||
</scm>
|
||||
|
||||
<issueManagement>
|
||||
<system>bugzilla</system>
|
||||
<url>https://bugs.eclipse.org/bugs/buglist.cgi?query_format=specific&order=relevance+desc&bug_status=__open__&product=Aether</url>
|
||||
</issueManagement>
|
||||
|
||||
<ciManagement>
|
||||
<system>Hudson</system>
|
||||
<url>https://hudson.eclipse.org/hudson/job/aether-core-nightly/</url>
|
||||
</ciManagement>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>sonatype-nexus-staging</id>
|
||||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||
</repository>
|
||||
<snapshotRepository>
|
||||
<id>${sonatypeOssDistMgmtSnapshotsId}</id>
|
||||
<url>${sonatypeOssDistMgmtSnapshotsUrl}</url>
|
||||
</snapshotRepository>
|
||||
</distributionManagement>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Eclipse Public License, Version 1.0</name>
|
||||
<url>http://www.eclipse.org/legal/epl-v10.html</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>bbentmann</id>
|
||||
<name>Benjamin Bentmann</name>
|
||||
<roles>
|
||||
<role>Project Lead</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jvanzyl</id>
|
||||
<name>Jason Van Zyl</name>
|
||||
<roles>
|
||||
<role>Project Lead</role>
|
||||
</roles>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<modules>
|
||||
<module>aether-api</module>
|
||||
<module>aether-spi</module>
|
||||
<module>aether-util</module>
|
||||
<module>aether-impl</module>
|
||||
<module>aether-test-util</module>
|
||||
<module>aether-connector-file</module>
|
||||
<module>aether-connector-wagon</module>
|
||||
<module>aether-connector-asynchttpclient</module>
|
||||
</modules>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<surefire.redirectTestOutputToFile>true</surefire.redirectTestOutputToFile>
|
||||
<sonatypeOssDistMgmtSnapshotsId>sonatype-nexus-snapshots</sonatypeOssDistMgmtSnapshotsId>
|
||||
<sonatypeOssDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</sonatypeOssDistMgmtSnapshotsUrl>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<artifactId>aether-api</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<artifactId>aether-spi</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<artifactId>aether-util</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<artifactId>aether-impl</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<artifactId>aether-connector-file</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<artifactId>aether-connector-wagon</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<artifactId>aether-connector-asynchttpclient</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<artifactId>aether-test-util</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.inject</groupId>
|
||||
<artifactId>javax.inject</artifactId>
|
||||
<version>1</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-annotations</artifactId>
|
||||
<version>1.5.5</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.sonatype.sisu</groupId>
|
||||
<artifactId>sisu-inject-plexus</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
<version>1.6.2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<version>2.3.7</version>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<Bundle-DocURL>${project.url}</Bundle-DocURL>
|
||||
<Bundle-Name>${project.name} (Incubation)</Bundle-Name>
|
||||
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
|
||||
<Bundle-Version>${bundle.osgiVersion}</Bundle-Version>
|
||||
</instructions>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>create-manifest</id>
|
||||
<phase>process-test-classes</phase>
|
||||
<goals>
|
||||
<goal>manifest</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>2.2.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>2.5.1</version>
|
||||
<configuration>
|
||||
<source>1.5</source>
|
||||
<target>1.5</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.3.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<!-- NOTE: Avoiding 2.4+ due to https://github.com/sonatype/m2eclipse-extras/issues/10 -->
|
||||
<version>2.3.2</version>
|
||||
<configuration>
|
||||
<archive>
|
||||
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.8.1</version>
|
||||
<configuration>
|
||||
<detectOfflineLinks>false</detectOfflineLinks>
|
||||
<links>
|
||||
<link>http://download.oracle.com/javase/6/docs/api/</link>
|
||||
</links>
|
||||
<tags>
|
||||
<tag>
|
||||
<name>noextend</name>
|
||||
<placement>a</placement>
|
||||
<head>Restriction:</head>
|
||||
</tag>
|
||||
<tag>
|
||||
<name>noimplement</name>
|
||||
<placement>a</placement>
|
||||
<head>Restriction:</head>
|
||||
</tag>
|
||||
<tag>
|
||||
<name>noinstantiate</name>
|
||||
<placement>a</placement>
|
||||
<head>Restriction:</head>
|
||||
</tag>
|
||||
<tag>
|
||||
<name>nooverride</name>
|
||||
<placement>a</placement>
|
||||
<head>Restriction:</head>
|
||||
</tag>
|
||||
<tag>
|
||||
<name>noreference</name>
|
||||
<placement>a</placement>
|
||||
<head>Restriction:</head>
|
||||
</tag>
|
||||
</tags>
|
||||
<groups>
|
||||
<group>
|
||||
<title>API</title>
|
||||
<packages>org.eclipse.aether*</packages>
|
||||
</group>
|
||||
<group>
|
||||
<title>SPI</title>
|
||||
<packages>org.eclipse.aether.spi*</packages>
|
||||
</group>
|
||||
<group>
|
||||
<title>Utilities</title>
|
||||
<packages>org.eclipse.aether.util*</packages>
|
||||
</group>
|
||||
<group>
|
||||
<title>Repository Connectors</title>
|
||||
<packages>org.eclipse.aether.connector*</packages>
|
||||
</group>
|
||||
<group>
|
||||
<title>Implementation</title>
|
||||
<packages>org.eclipse.aether.impl*</packages>
|
||||
</group>
|
||||
<group>
|
||||
<title>Internals</title>
|
||||
<packages>org.eclipse.aether.internal*</packages>
|
||||
</group>
|
||||
</groups>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<configuration>
|
||||
<autoVersionSubmodules>true</autoVersionSubmodules>
|
||||
<mavenExecutorId>forked-path</mavenExecutorId>
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<goals>deploy javadoc:aggregate-jar assembly:attached</goals>
|
||||
<arguments>-Psonatype-oss-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.1.2</version>
|
||||
<configuration>
|
||||
<archive>
|
||||
<manifestEntries>
|
||||
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
|
||||
<Bundle-Name>${project.name} Sources (Incubation)</Bundle-Name>
|
||||
<Bundle-License>http://www.eclipse.org/legal/epl-v10.html</Bundle-License>
|
||||
<Bundle-SymbolicName>${bundle.symbolicName}.source</Bundle-SymbolicName>
|
||||
<Bundle-Vendor>${project.organization.name}</Bundle-Vendor>
|
||||
<Bundle-Version>${bundle.osgiVersion}</Bundle-Version>
|
||||
<Eclipse-SourceBundle>${bundle.symbolicName};version="${bundle.osgiVersion}";roots:="."</Eclipse-SourceBundle>
|
||||
</manifestEntries>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.9</version>
|
||||
<configuration>
|
||||
<argLine>-Xmx128m</argLine>
|
||||
<redirectTestOutputToFile>${surefire.redirectTestOutputToFile}</redirectTestOutputToFile>
|
||||
<systemPropertyVariables>
|
||||
<java.io.tmpdir>${project.build.directory}/surefire-tmp</java.io.tmpdir>
|
||||
</systemPropertyVariables>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
<version>1.9</version>
|
||||
<configuration>
|
||||
<signature>
|
||||
<groupId>org.codehaus.mojo.signature</groupId>
|
||||
<artifactId>java15</artifactId>
|
||||
<version>1.0</version>
|
||||
</signature>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-java-1.5-compat</id>
|
||||
<phase>process-classes</phase>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>clirr-maven-plugin</artifactId>
|
||||
<version>2.3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<version>1.5.5</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>generate-components-xml</id>
|
||||
<phase>process-classes</phase>
|
||||
<goals>
|
||||
<goal>generate-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.sonatype.plugins</groupId>
|
||||
<artifactId>sisu-maven-plugin</artifactId>
|
||||
<version>1.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>generate-index</id>
|
||||
<phase>process-classes</phase>
|
||||
<goals>
|
||||
<goal>main-index</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>qa</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireProperty>
|
||||
<!-- enforce OSGi-friendly versioning scheme such that milestone < rc < final release -->
|
||||
<property>project.version</property>
|
||||
<regex>[0-9]+\.[0-9]+\.[0-9]+((.*-SNAPSHOT)|(\.M[0-9]+)|(\.RC[0-9]+)|(\.v[0-9]{8}))</regex>
|
||||
<regexMessage>Project version must be either X.Y.Z.M#, X.Y.Z.RC# or X.Y.Z.v########</regexMessage>
|
||||
</requireProperty>
|
||||
<bannedDependencies>
|
||||
<!-- enforce use of dependencies approved via IP log -->
|
||||
<searchTransitive>true</searchTransitive>
|
||||
<excludes>
|
||||
<exclude>*:*</exclude>
|
||||
</excludes>
|
||||
<includes>
|
||||
<include>org.eclipse.aether</include>
|
||||
<!-- CQ #5627 -->
|
||||
<include>org.slf4j:slf4j-api:1.6.2</include>
|
||||
<!-- CQ #5628 -->
|
||||
<include>junit:junit:4.8.2</include>
|
||||
<!-- CQ #5629 -->
|
||||
<include>org.codehaus.plexus:plexus-component-annotations:1.5.5</include>
|
||||
<!-- CQ #5630 -->
|
||||
<include>org.codehaus.plexus:plexus-utils:2.1</include>
|
||||
<!-- CQ #5631 -->
|
||||
<include>org.codehaus.plexus:plexus-classworlds:2.4</include>
|
||||
<!-- CQ #5632 -->
|
||||
<include>org.apache.maven.wagon:wagon-provider-api:1.0</include>
|
||||
<!-- CQ #6816 -->
|
||||
<include>com.ning:async-http-client:1.7.6</include>
|
||||
<!-- CQ #6817 -->
|
||||
<include>io.netty:netty:3.4.4.Final</include>
|
||||
<!-- CQ #5635 -->
|
||||
<include>org.sonatype.sisu:sisu-inject-plexus:2.3.0</include>
|
||||
<!-- CQ #5636 -->
|
||||
<include>org.sonatype.sisu:sisu-guice:3.1.0</include>
|
||||
<!-- CQ #5637 -->
|
||||
<include>org.sonatype.sisu:sisu-guava:0.9.9</include>
|
||||
<!-- CQ #5639 -->
|
||||
<include>javax.inject:javax.inject:1</include>
|
||||
<!-- CQ #5641, #5638, #5639, #5640 -->
|
||||
<include>org.sonatype.sisu:sisu-inject-bean:2.3.0</include>
|
||||
<!-- CQ #5660 -->
|
||||
<include>ch.qos.logback:*:*:*:test</include>
|
||||
<include>org.apache.maven.wagon:wagon-http-lightweight:*:*:test</include>
|
||||
<include>org.eclipse.jetty:*:*:*:test</include>
|
||||
<include>org.mortbay.jetty:*:*:*:test</include>
|
||||
<include>org.sonatype.http-testing-harness:*:*:*:test</include>
|
||||
<include>javax.servlet:*:*:*:test</include>
|
||||
</includes>
|
||||
</bannedDependencies>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<version>1.7</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>osgi-timestamp</id>
|
||||
<phase>initialize</phase>
|
||||
<goals>
|
||||
<goal>timestamp-property</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<name>bundle.osgiTimestamp</name>
|
||||
<pattern>yyyyMMdd-HHmm</pattern>
|
||||
<timeZone>UTC</timeZone>
|
||||
<locale>en</locale>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>osgi-version</id>
|
||||
<phase>initialize</phase>
|
||||
<goals>
|
||||
<goal>regex-property</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<name>bundle.osgiVersion</name>
|
||||
<value>${project.version}</value>
|
||||
<regex>-SNAPSHOT</regex>
|
||||
<replacement>.${bundle.osgiTimestamp}</replacement>
|
||||
<failIfNoMatch>false</failIfNoMatch>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>sonatype-oss-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>default-cli</id>
|
||||
<configuration>
|
||||
<attach>false</attach>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.apache.resources</groupId>
|
||||
<artifactId>apache-source-release-assembly-descriptor</artifactId>
|
||||
<version>1.0.2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-source-release-distro</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
|
||||
<descriptorRefs>
|
||||
<descriptorRef>source-release</descriptorRef>
|
||||
</descriptorRefs>
|
||||
<tarLongFileFormat>gnu</tarLongFileFormat>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>default-cli</id>
|
||||
<configuration>
|
||||
<attach>false</attach>
|
||||
<descriptors>
|
||||
<descriptor>src/main/assembly/bin.xml</descriptor>
|
||||
</descriptors>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>snapshot-sources</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>clirr</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>clirr-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-api-compat</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>check-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>m2e</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>m2e.version</name>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.m2e</groupId>
|
||||
<artifactId>lifecycle-mapping</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<configuration>
|
||||
<lifecycleMappingMetadata>
|
||||
<pluginExecutions>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.sonatype.plugins</groupId>
|
||||
<artifactId>sisu-maven-plugin</artifactId>
|
||||
<versionRange>[1.1,)</versionRange>
|
||||
<goals>
|
||||
<goal>test-index</goal>
|
||||
<goal>main-index</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<versionRange>[1.7,)</versionRange>
|
||||
<goals>
|
||||
<goal>regex-property</goal>
|
||||
<goal>timestamp-property</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<execute>
|
||||
<runOnConfiguration>true</runOnConfiguration>
|
||||
</execute>
|
||||
</action>
|
||||
</pluginExecution>
|
||||
</pluginExecutions>
|
||||
</lifecycleMappingMetadata>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
e44bcfab62cbf0ad4f15a47aa9cc48368db2dc6d
|
||||
Reference in New Issue
Block a user