Skip to content

Commit

Permalink
Release 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tilln committed Aug 12, 2019
1 parent bdb73cd commit f9e0386
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 25 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
language: java
before_install:
- rm -rf target
deploy:
provider: releases
api_key:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ Under tab "Available Plugins", select "WS Security for SOAP", then click "Apply
### Via Package from [JMeter-Plugins.org](https://jmeter-plugins.org/)

1. Remove wss4j-\*.jar and xmlsec-\*.jar from JMeter's lib directory (if applicable).
2. Download and extract the [zip package](https://jmeter-plugins.org/files/packages/tilln-wssecurity-1.6.zip) into JMeter's lib directory.
2. Download and extract the [zip package](https://jmeter-plugins.org/files/packages/tilln-wssecurity-1.7.zip) into JMeter's lib directory.
3. Restart JMeter.

### Via Manual Download

1. Copy the [jmeter-wssecurity jar file](https://github.com/tilln/jmeter-wssecurity/releases/download/1.6/jmeter-wssecurity-1.6.jar) into JMeter's lib/ext directory.
1. Copy the [jmeter-wssecurity jar file](https://github.com/tilln/jmeter-wssecurity/releases/download/1.7/jmeter-wssecurity-1.7.jar) into JMeter's lib/ext directory.
2. Copy the following dependencies into JMeter's lib directory:
* [org.apache.wss4j / wss4j-ws-security-dom](https://search.maven.org/remotecontent?filepath=org/apache/wss4j/wss4j-ws-security-dom/2.2.2/wss4j-ws-security-dom-2.2.2.jar)
* [org.apache.wss4j / wss4j-ws-security-common](https://search.maven.org/remotecontent?filepath=org/apache/wss4j/wss4j-ws-security-common/2.2.2/wss4j-ws-security-common-2.2.2.jar)
Expand Down
31 changes: 10 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,15 @@
<groupId>nz.co.breakpoint</groupId>
<artifactId>jmeter-wssecurity</artifactId>
<packaging>jar</packaging>
<version>1.7-SNAPSHOT</version>
<name>jmeter-wssecurity</name>
<version>1.7</version>
<name>${project.artifactId}</name>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -15,9 +22,8 @@

<scm>
<url>https://github.com/tilln/jmeter-wssecurity</url>
<connection>scm:git:git://github.com/tilln/jmeter-wssecurity</connection>
<connection>scm:git:git://github.com/tilln/jmeter-wssecurity.git</connection>
<developerConnection>scm:git:[email protected]:tilln/jmeter-wssecurity.git</developerConnection>
<tag>HEAD</tag>
</scm>

<dependencies>
Expand Down Expand Up @@ -69,23 +75,6 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<preparationGoals>clean install</preparationGoals>
<tagNameFormat>@{project.artifactId}-@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<finalName>${project.name}-${project.version}</finalName>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down

0 comments on commit f9e0386

Please sign in to comment.