Set the version of jetty-test-policy artifact to 1.2
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2968 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
2b79f06c78
commit
fa6ef11ad6
|
@ -17,20 +17,20 @@ jetty-7.4.0-SNAPSHOT
|
||||||
+ 341006 Move inner enums out into separate file
|
+ 341006 Move inner enums out into separate file
|
||||||
+ 341105 Stack trace is printed for an ignored exception
|
+ 341105 Stack trace is printed for an ignored exception
|
||||||
+ 341145 WebAppContext MBean attribute serverClasses returns empty value
|
+ 341145 WebAppContext MBean attribute serverClasses returns empty value
|
||||||
|
+ 341171 Locking in HttpDestination blocks all requests to the same address
|
||||||
+ 341206 Stop order is wrong in HandlerWrapper
|
+ 341206 Stop order is wrong in HandlerWrapper
|
||||||
+ 341255 org.eclipse.http usage in AJP/SessionId linkage
|
+ 341255 org.eclipse.http usage in AJP/SessionId linkage
|
||||||
+ 341386 Remote close not detected by HttpClient
|
+ 341386 Remote close not detected by HttpClient
|
||||||
+ 341394 Remove 'Unavailable' JMX attributes of WebAppContext MBean
|
+ 341394 Remove 'Unavailable' JMX attributes of WebAppContext MBean
|
||||||
+ 341439 Blocking HttpClient does not use soTimeout for timeouts
|
+ 341439 Blocking HttpClient does not use soTimeout for timeouts
|
||||||
+ 341561 Exception when adding o.e.j.s.DoSFilter as managed attribute
|
+ 341561 Exception when adding o.e.j.s.DoSFilter as managed attribute
|
||||||
|
+ 341692 Fixed deadlock if stopped while starting
|
||||||
+ 341736 Split jetty-nested out of war module
|
+ 341736 Split jetty-nested out of war module
|
||||||
+ 341726 JSONPojoConverter handles characters
|
+ 341726 JSONPojoConverter handles characters
|
||||||
+ 341692 Fixed deadlock if stopped while starting
|
|
||||||
+ JETTY-1245 Pooled Buffers implementation
|
+ JETTY-1245 Pooled Buffers implementation
|
||||||
+ JETTY-1354 Added jetty-nested
|
+ JETTY-1354 Added jetty-nested
|
||||||
+ Ensure generated fragment names are unique
|
+ Ensure generated fragment names are unique
|
||||||
+ Added extra session removal test
|
+ Added extra session removal test
|
||||||
+ 341171 Locking in HttpDestination blocks all requests to the same address
|
|
||||||
|
|
||||||
jetty-7.3.1.v20110307 7 March 2011
|
jetty-7.3.1.v20110307 7 March 2011
|
||||||
+ 316382 Support a more strict SSL option with certificates
|
+ 316382 Support a more strict SSL option with certificates
|
||||||
|
|
|
@ -12,8 +12,7 @@
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<bundle-symbolic-name>${project.groupId}.client</bundle-symbolic-name>
|
<bundle-symbolic-name>${project.groupId}.client</bundle-symbolic-name>
|
||||||
<jetty.test.keystore>1.2-SNAPSHOT</jetty.test.keystore>
|
<jetty.test.policy.loc>target/test-policy</jetty.test.policy.loc>
|
||||||
<jetty.test.keystore.loc>target/test-policy</jetty.test.keystore.loc>
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
@ -70,11 +69,11 @@
|
||||||
<artifactItem>
|
<artifactItem>
|
||||||
<groupId>org.eclipse.jetty.toolchain</groupId>
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
||||||
<artifactId>jetty-test-policy</artifactId>
|
<artifactId>jetty-test-policy</artifactId>
|
||||||
<version>${jetty.test.keystore}</version>
|
<version>${jetty.test.policy}</version>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<overWrite>true</overWrite>
|
<overWrite>true</overWrite>
|
||||||
<includes>**/*.keystore,**/*.pem</includes>
|
<includes>**/*.keystore,**/*.pem</includes>
|
||||||
<outputDirectory>${jetty.test.keystore.loc}</outputDirectory>
|
<outputDirectory>${jetty.test.policy.loc}</outputDirectory>
|
||||||
</artifactItem>
|
</artifactItem>
|
||||||
</artifactItems>
|
</artifactItems>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
@ -125,4 +124,4 @@
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
<name>Jetty :: Policy Tool</name>
|
<name>Jetty :: Policy Tool</name>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<properties>
|
<properties>
|
||||||
<jetty.test.policy>1.0</jetty.test.policy>
|
|
||||||
<jetty.test.policy.loc>target/test-policy</jetty.test.policy.loc>
|
<jetty.test.policy.loc>target/test-policy</jetty.test.policy.loc>
|
||||||
<bundle-symbolic-name>${project.groupId}.policy</bundle-symbolic-name>
|
<bundle-symbolic-name>${project.groupId}.policy</bundle-symbolic-name>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
1
pom.xml
1
pom.xml
|
@ -22,6 +22,7 @@
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<slf4j-version>1.5.11</slf4j-version>
|
<slf4j-version>1.5.11</slf4j-version>
|
||||||
<build-support-version>1.0</build-support-version>
|
<build-support-version>1.0</build-support-version>
|
||||||
|
<jetty.test.policy>1.2</jetty.test.policy>
|
||||||
</properties>
|
</properties>
|
||||||
<scm>
|
<scm>
|
||||||
<connection>scm:svn:http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk</connection>
|
<connection>scm:svn:http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk</connection>
|
||||||
|
|
Loading…
Reference in New Issue