Skip to content

Commit 03fafe9

Browse files
committed
Removed Useless Jar Generation from Web Service Server-Side Examples
It is enough to just build the aar archives, so we can drop `package` from the Maven build command line.
1 parent d703688 commit 03fafe9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

webServices/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Now you can build the server projects, i.e., generate an [`aar`](http://axis.apa
116116
7. Click `New launch configuration` (the first symbol from the left on top of the small white pane).
117117
8. Write a useful name for this configuration in the `Name` field. You can use this configuration again later.
118118
9. In the tab `Main` enter the `Base directory` of the project, this is the folder called `webServices/calculator/server` containing the Eclipse/Maven project.
119-
10. Under `Goals`, enter `clean compile package axis2-aar:aar`. This will build a `aar` archive.
119+
10. Under `Goals`, enter `clean compile axis2-aar:aar`. This will build a `aar` archive.
120120
11. Click `Apply`
121121
12. Click `Run`
122122
13. The build will start, you will see its status output in the console window.

webServices/calculator/server/make_linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -o errexit # set -e : exit the script if any statement returns a non-true
99
echo "We now build the calculator example web service."
1010

1111
rm -rf target
12-
mvn clean compile package axis2-aar:aar
12+
mvn clean compile axis2-aar:aar
1313
rm -rf target/aar
1414
rm -rf target/generated-sources
1515
rm -rf target/maven-status

webServices/warehouse/server/make_linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -o errexit # set -e : exit the script if any statement returns a non-true
99
echo "We now build the warehouse example web service."
1010

1111
rm -rf target
12-
mvn clean compile package axis2-aar:aar
12+
mvn clean compile axis2-aar:aar
1313
rm -rf target/aar
1414
rm -rf target/generated-sources
1515
rm -rf target/maven-status

0 commit comments

Comments
 (0)