Skip to content

Commit 4dc8a72

Browse files
authored
Merge pull request #52 from Bernardo-MG/release
Release
2 parents 54b19d4 + 73a16d6 commit 4dc8a72

178 files changed

Lines changed: 1034 additions & 1009 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,28 @@
22
* text=auto
33

44
# Known text files
5-
*.java text
6-
*.xml text
7-
*.yml text
8-
*.md text
9-
*.sh text
10-
*.css text
11-
*.txt text
5+
*.css text diff=css
6+
*.java text diff=java
7+
*.js text
8+
*.json text
9+
*.jsp text
10+
*.jspf text
11+
*.jspx text
12+
*.htm text diff=html
13+
*.html text diff=html
14+
*.properties text
15+
*.sh text
16+
*.md text
17+
*.txt text
18+
*.xml text
19+
*.yml text
1220

1321
# Known binary files
14-
*.jar binary
22+
*.class binary
23+
*.gif binary
24+
*.ico binary
25+
*.jar binary
26+
*.jpg binary
27+
*.jpeg binary
28+
*.png binary
29+
*.war binary

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ matrix:
1515

1616
before_install:
1717
# Gets scripts
18-
- git clone -b v1.0.0 --single-branch https://github.com/Bernardo-MG/ci-shell-scripts.git ~/.scripts
18+
- git clone -b v1.1.3 --single-branch https://github.com/Bernardo-MG/ci-shell-scripts.git ~/.scripts
1919
# Sets scripts as executable
2020
- chmod -R +x ~/.scripts/*
2121
# Prepares CI environment

pom.xml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@
1313
<!-- ********************************************** -->
1414

1515
<parent>
16-
<groupId>com.wandrell.maven</groupId>
16+
<groupId>com.bernardomg.maven</groupId>
1717
<artifactId>base-pom</artifactId>
18-
<version>1.1.6</version>
18+
<version>1.2.0</version>
1919
</parent>
2020

2121
<!-- ********************************************** -->
2222
<!-- **************** PROJECT INFO **************** -->
2323
<!-- ********************************************** -->
2424

25-
<groupId>com.wandrell.example</groupId>
25+
<groupId>com.bernardomg.example</groupId>
2626
<artifactId>swss-soap-example</artifactId>
27-
<version>1.2.6</version>
27+
<version>1.3.0</version>
2828
<packaging>war</packaging>
2929

3030
<name>Spring Web Services WS-Security Example</name>
@@ -154,7 +154,8 @@
154154
<site>
155155
<id>site</id>
156156
<name>Project Documentation Site</name>
157-
<url>scp://docs.wandrell.com:2222/home1/duenco/www/maven/swss-soap-example</url>
157+
<!-- The URL should be set externally -->
158+
<url>${site.release.url}</url>
158159
</site>
159160
</distributionManagement>
160161
</profile>
@@ -166,7 +167,8 @@
166167
<site>
167168
<id>site-development</id>
168169
<name>Project Development Documentation Site</name>
169-
<url>scp://docs.wandrell.com:2222/home1/duenco/www/development/maven/swss-soap-example</url>
170+
<!-- The URL should be set externally -->
171+
<url>${site.develop.url}</url>
170172
</site>
171173
</distributionManagement>
172174
</profile>
@@ -279,7 +281,7 @@
279281
<developer>
280282
<id>bmg</id>
281283
<name>Bernardo Martínez Garrido</name>
282-
<email>programming@wandrell.com</email>
284+
<email>programming@bernardomg.com</email>
283285
<url>https://github.com/Bernardo-MG</url>
284286
<organization>Bernardo Martínez Garrido</organization>
285287
<organizationUrl>https://github.com/Bernardo-MG</organizationUrl>
@@ -297,7 +299,7 @@
297299

298300
<properties>
299301
<!-- Manifest data -->
300-
<manifest.name>com/wandrell/example/spring/wss</manifest.name>
302+
<manifest.name>com/bernardomg/example/spring/wss</manifest.name>
301303
<!-- Dependencies versions -->
302304
<ant.version>1.9.7</ant.version>
303305
<commons.codec.version>1.10</commons.codec.version>
@@ -759,7 +761,7 @@
759761
<dependencies>
760762
<dependency>
761763
<!-- Docs Maven Skin -->
762-
<groupId>com.wandrell.maven.skins</groupId>
764+
<groupId>com.bernardomg.maven.skins</groupId>
763765
<artifactId>docs-maven-skin</artifactId>
764766
<version>${site.skin.version}</version>
765767
</dependency>

readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Spring Web Services WS-Security Example
1+
# Spring Web Services WS-Security Example [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Spring%20Web%20Services%20WS-Security%20Example%204&url=https://github.com/Bernardo-MG/spring-ws-security-soap-example&via=BernardoMartG&hashtags=spring-ws,wss,soap)
22

33
Sample [Spring WS][spring-ws] SOAP web service which sets up various [WS-Security][ws-security] protocols.
44

@@ -95,7 +95,7 @@ $ mvn package
9595

9696
After this all the endpoint URLs are accessible. These can be found below, and require some sort of SOAP client, such as the console one included in the project.
9797

98-
This console client can be used by just running the ConsoleClient class, located in the com.wandrell.example.swss.client.console folder.
98+
This console client can be used by just running the ConsoleClient class, located in the com.bernardomg.example.swss.client.console folder.
9999

100100
### Running the example with Java 8
101101

@@ -147,12 +147,12 @@ If you wish to fork or modify the code, visit the [GitHub project page][scm], wh
147147
The project has been released under the [MIT License][license].
148148

149149
[issues]: https://github.com/bernardo-mg/swss-soap-example/issues
150-
[javadoc-develop]: http://docs.wandrell.com/development/maven/swss-soap-example/apidocs
151-
[javadoc-release]: http://docs.wandrell.com/maven/swss-soap-example/apidocs
150+
[javadoc-develop]: http://docs.bernardomg.com/development/maven/swss-soap-example/apidocs
151+
[javadoc-release]: http://docs.bernardomg.com/maven/swss-soap-example/apidocs
152152
[license]: http://www.opensource.org/licenses/mit-license.php
153153
[scm]: https://github.com/bernardo-mg/spring-ws-security-soap-example
154-
[site-develop]: http://docs.wandrell.com/development/maven/swss-soap-example
155-
[site-release]: http://docs.wandrell.com/maven/swss-soap-example
154+
[site-develop]: http://docs.bernardomg.com/development/maven/swss-soap-example
155+
[site-release]: http://docs.bernardomg.com/maven/swss-soap-example
156156

157157
[ws-security]: https://www.oasis-open.org/committees/wss/
158158
[xwss]: https://docs.oracle.com/cd/E17802_01/webservices/webservices/docs/1.6/tutorial/doc/XWS-SecurityIntro4.html

src/changes/changes.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/xsd/changes-1.0.0.xsd">
33
<properties>
44
<title>Project Changes</title>
5-
<author email="programming@wandrell.com">Bernardo Martínez Garrido</author>
5+
<author email="programming@bernardomg.com">Bernardo Martínez Garrido</author>
66
</properties>
77
<body>
88
<release version="1.0.0" date="2016-03-26" description="First version">
@@ -139,5 +139,10 @@
139139
Updated base POM and project configuration.
140140
</action>
141141
</release>
142+
<release version="1.3.0" date="2017-11-26" description="Relocation">
143+
<action dev="bmg" type="update">
144+
Relocation.
145+
</action>
146+
</release>
142147
</body>
143148
</document>

src/config/pmd/pmd-rules.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
22
<!DOCTYPE xml>
3-
<ruleset name="DefaultWandrell">
3+
<ruleset name="Defaultbernardomg">
44
<description>
55
Default list of rulesets to use, along ignored rules.
66
</description>

0 commit comments

Comments
 (0)