[jira] [Commented] (AXIS2-5781) Maven Build - Module: kernel - generates / modifies file under source-control - should build in output directory

2017-08-24 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5781?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16140697#comment-16140697
 ] 

Hudson commented on AXIS2-5781:
---

FAILURE: Integrated in Jenkins build axis2-1.7 #133 (See 
[https://builds.apache.org/job/axis2-1.7/133/])
AXIS2-5781, AXIS2-5870: Merge r1779069 and r1779074 to the 1.7 branch. 
(veithen: rev 1806081)
* (edit) axis2
* (edit) 
axis2/modules/codegen/test/org/apache/axis2/wsdl/codegen/writer/SchemaWriterTest.java
* (edit) 
axis2/modules/kernel/test/org/apache/axis2/description/java2wsdl/XMLSchemaTest.java


> Maven Build - Module: kernel - generates / modifies file under source-control 
> - should build in output directory
> 
>
> Key: AXIS2-5781
> URL: https://issues.apache.org/jira/browse/AXIS2-5781
> Project: Axis2
>  Issue Type: Bug
>  Components: kernel
>Affects Versions: 1.7.3
>Reporter: Jeff Thomas
>Priority: Minor
>
> Maven Build for axis2-kernel (./modules/kernel/pom.xml).
> In the axis2-kernel Maven Module (and at in at least the axis2-integration 
> module as well) test ant-scripts and unit-tests run against the 
> "./test-resources" directory instead of the "./target/test-resources" 
> directory.
> In the interest of Maven "compliance" the build process should not edit, 
> touch or otherwise "dirty" source-code files.
> Examples:
> 1.  The Ant-script "test-resources/deployment/service2/build.xml" creates 
> temporary directories, generates content, and removes these temporary 
> directories directly within the "test-resources" source directory.
> 2. The Unit-Test utility method 'readWSDLFromFile' in XMLSchemaTest creates a 
> File reference to a file in "test-resources" and performs the following:
> {code:java}XMLPrettyPrinter.prettify(file);{code}
> This updates (dirties) the input source-file - on my windows build it changes 
> the line-endings from Unix to Windows.
> The current Maven POMs already take care of copying the "test-resources" 
> directory to "target/test-resources" so all of the required input files and 
> ant-scripts are available there.  Therefore, the POM ANT "dir" properties and 
> the JUnit tests just need to be updated to use these instead of the 
> source-code originals.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Commented] (AXIS2-5781) Maven Build - Module: kernel - generates / modifies file under source-control - should build in output directory

2017-08-05 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5781?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16115388#comment-16115388
 ] 

Hudson commented on AXIS2-5781:
---

SUCCESS: Integrated in Jenkins build Axis2 #3805 (See 
[https://builds.apache.org/job/Axis2/3805/])
AXIS2-5781: Create temporary folders under target instead of the module root 
directory. (veithen: rev 1804158)
* (edit) 
axis2/modules/adb-codegen/test/org/apache/axis2/schema/compile/AbstractSchemaCompilerTester.java
AXIS2-5781: Use the latest releases of axis2-aar-maven-plugin and 
axis2-mar-maven-plugin; they no longer attempt to write temporary files in the 
module root directory. (veithen: rev 1804157)
* (edit) axis2/pom.xml


> Maven Build - Module: kernel - generates / modifies file under source-control 
> - should build in output directory
> 
>
> Key: AXIS2-5781
> URL: https://issues.apache.org/jira/browse/AXIS2-5781
> Project: Axis2
>  Issue Type: Bug
>  Components: kernel
>Affects Versions: 1.7.3
>Reporter: Jeff Thomas
>Priority: Minor
>
> Maven Build for axis2-kernel (./modules/kernel/pom.xml).
> In the axis2-kernel Maven Module (and at in at least the axis2-integration 
> module as well) test ant-scripts and unit-tests run against the 
> "./test-resources" directory instead of the "./target/test-resources" 
> directory.
> In the interest of Maven "compliance" the build process should not edit, 
> touch or otherwise "dirty" source-code files.
> Examples:
> 1.  The Ant-script "test-resources/deployment/service2/build.xml" creates 
> temporary directories, generates content, and removes these temporary 
> directories directly within the "test-resources" source directory.
> 2. The Unit-Test utility method 'readWSDLFromFile' in XMLSchemaTest creates a 
> File reference to a file in "test-resources" and performs the following:
> {code:java}XMLPrettyPrinter.prettify(file);{code}
> This updates (dirties) the input source-file - on my windows build it changes 
> the line-endings from Unix to Windows.
> The current Maven POMs already take care of copying the "test-resources" 
> directory to "target/test-resources" so all of the required input files and 
> ant-scripts are available there.  Therefore, the POM ANT "dir" properties and 
> the JUnit tests just need to be updated to use these instead of the 
> source-code originals.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Commented] (AXIS2-5781) Maven Build - Module: kernel - generates / modifies file under source-control - should build in output directory

2017-07-30 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5781?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16106476#comment-16106476
 ] 

Hudson commented on AXIS2-5781:
---

FAILURE: Integrated in Jenkins build axis2-1.7 #125 (See 
[https://builds.apache.org/job/axis2-1.7/125/])
AXIS2-5781: Merge r1787676 to the 1.7 branch. (veithen: rev 1803419)
* (edit) axis2
* (edit) axis2/modules/tool/axis2-aar-maven-plugin/pom.xml
* (edit) 
axis2/modules/tool/axis2-aar-maven-plugin/src/main/java/org/apache/axis2/maven2/aar/AarMojo.java
* (edit) 
axis2/modules/tool/axis2-aar-maven-plugin/src/main/java/org/apache/axis2/maven2/aar/AbstractAarMojo.java
* (edit) axis2/modules/tool/axis2-idea-plugin/pom.xml
* (edit) axis2/modules/tool/axis2-java2wsdl-maven-plugin/pom.xml
* (edit) 
axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/main/java/org/apache/axis2/maven2/java2wsdl/Java2WSDLMojo.java
* (edit) axis2/modules/tool/axis2-mar-maven-plugin/pom.xml
* (edit) 
axis2/modules/tool/axis2-mar-maven-plugin/src/main/java/org/apache/axis2/maven2/mar/AbstractMarMojo.java
* (edit) 
axis2/modules/tool/axis2-mar-maven-plugin/src/main/java/org/apache/axis2/maven2/mar/MarMojo.java
* (edit) axis2/modules/tool/axis2-repo-maven-plugin/pom.xml
* (edit) axis2/modules/tool/axis2-wsdl2code-maven-plugin
* (edit) axis2/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml
* (edit) axis2/pom.xml


> Maven Build - Module: kernel - generates / modifies file under source-control 
> - should build in output directory
> 
>
> Key: AXIS2-5781
> URL: https://issues.apache.org/jira/browse/AXIS2-5781
> Project: Axis2
>  Issue Type: Bug
>  Components: kernel
>Affects Versions: 1.7.3
>Reporter: Jeff Thomas
>Priority: Minor
>
> Maven Build for axis2-kernel (./modules/kernel/pom.xml).
> In the axis2-kernel Maven Module (and at in at least the axis2-integration 
> module as well) test ant-scripts and unit-tests run against the 
> "./test-resources" directory instead of the "./target/test-resources" 
> directory.
> In the interest of Maven "compliance" the build process should not edit, 
> touch or otherwise "dirty" source-code files.
> Examples:
> 1.  The Ant-script "test-resources/deployment/service2/build.xml" creates 
> temporary directories, generates content, and removes these temporary 
> directories directly within the "test-resources" source directory.
> 2. The Unit-Test utility method 'readWSDLFromFile' in XMLSchemaTest creates a 
> File reference to a file in "test-resources" and performs the following:
> {code:java}XMLPrettyPrinter.prettify(file);{code}
> This updates (dirties) the input source-file - on my windows build it changes 
> the line-endings from Unix to Windows.
> The current Maven POMs already take care of copying the "test-resources" 
> directory to "target/test-resources" so all of the required input files and 
> ant-scripts are available there.  Therefore, the POM ANT "dir" properties and 
> the JUnit tests just need to be updated to use these instead of the 
> source-code originals.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Commented] (AXIS2-5781) Maven Build - Module: kernel - generates / modifies file under source-control - should build in output directory

2017-07-30 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5781?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16106472#comment-16106472
 ] 

Hudson commented on AXIS2-5781:
---

SUCCESS: Integrated in Jenkins build Axis2 #3803 (See 
[https://builds.apache.org/job/Axis2/3803/])
AXIS2-5781: Don't write temporary files into the source tree. (veithen: rev 
1803416)
* (edit) axis2/modules/kernel/test-resources/deployment/echo/build.xml
* (edit) axis2/modules/kernel/test-resources/deployment/invalidservice/build.xml
* (edit) axis2/modules/kernel/test-resources/deployment/module1/build.xml
* (edit) axis2/modules/kernel/test-resources/deployment/service2/build.xml
* (edit) axis2/modules/kernel/test-resources/deployment/serviceModule/build.xml


> Maven Build - Module: kernel - generates / modifies file under source-control 
> - should build in output directory
> 
>
> Key: AXIS2-5781
> URL: https://issues.apache.org/jira/browse/AXIS2-5781
> Project: Axis2
>  Issue Type: Bug
>  Components: kernel
>Affects Versions: 1.7.3
>Reporter: Jeff Thomas
>Priority: Minor
>
> Maven Build for axis2-kernel (./modules/kernel/pom.xml).
> In the axis2-kernel Maven Module (and at in at least the axis2-integration 
> module as well) test ant-scripts and unit-tests run against the 
> "./test-resources" directory instead of the "./target/test-resources" 
> directory.
> In the interest of Maven "compliance" the build process should not edit, 
> touch or otherwise "dirty" source-code files.
> Examples:
> 1.  The Ant-script "test-resources/deployment/service2/build.xml" creates 
> temporary directories, generates content, and removes these temporary 
> directories directly within the "test-resources" source directory.
> 2. The Unit-Test utility method 'readWSDLFromFile' in XMLSchemaTest creates a 
> File reference to a file in "test-resources" and performs the following:
> {code:java}XMLPrettyPrinter.prettify(file);{code}
> This updates (dirties) the input source-file - on my windows build it changes 
> the line-endings from Unix to Windows.
> The current Maven POMs already take care of copying the "test-resources" 
> directory to "target/test-resources" so all of the required input files and 
> ant-scripts are available there.  Therefore, the POM ANT "dir" properties and 
> the JUnit tests just need to be updated to use these instead of the 
> source-code originals.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Commented] (AXIS2-5781) Maven Build - Module: kernel - generates / modifies file under source-control - should build in output directory

2017-07-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5781?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16088849#comment-16088849
 ] 

Hudson commented on AXIS2-5781:
---

SUCCESS: Integrated in Jenkins build Axis2 #3800 (See 
[https://builds.apache.org/job/Axis2/3800/])
AXIS2-5781: Use maven-invoker-plugin to execute tests for 
axis2-java2wsdl-maven-plugin. (veithen: rev 1800535)
* (edit) axis2/modules/tool/axis2-java2wsdl-maven-plugin/pom.xml
* (add) axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/it
* (add) axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/it/test1
* (edit) axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/it/test1/pom.xml
* (add) axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/it/test1/src
* (add) axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/it/test1/src/main
* (add) 
axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/it/test1/src/main/java
* (add) 
axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/it/test1/src/main/java/org
* (add) 
axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/it/test1/src/main/java/org/apache
* (add) 
axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/it/test1/src/main/java/org/apache/axis2
* (add) 
axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/it/test1/src/main/java/org/apache/axis2/maven2
* (add) 
axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/it/test1/src/main/java/org/apache/axis2/maven2/java2wsdl
* (add) 
axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/it/test1/src/main/java/org/apache/axis2/maven2/java2wsdl/test
* (delete) axis2/modules/tool/axis2-java2wsdl-maven-plugin/src/test
AXIS2-5781: Use maven-invoker-plugin to execute tests for 
axis2-aar-maven-plugin. (veithen: rev 1800534)
* (edit) axis2/modules/tool/axis2-aar-maven-plugin/pom.xml
* (add) axis2/modules/tool/axis2-aar-maven-plugin/src/it
* (add) axis2/modules/tool/axis2-aar-maven-plugin/src/it/test1
* (add) axis2/modules/tool/axis2-aar-maven-plugin/src/it/test1/pom.xml
* (add) axis2/modules/tool/axis2-aar-maven-plugin/src/it/test1/src
* (add) axis2/modules/tool/axis2-aar-maven-plugin/src/it/test1/src/main
* (add) 
axis2/modules/tool/axis2-aar-maven-plugin/src/it/test1/src/main/resources
* (add) 
axis2/modules/tool/axis2-aar-maven-plugin/src/it/test1/src/main/resources/META-INF
* (add) 
axis2/modules/tool/axis2-aar-maven-plugin/src/it/test1/src/main/resources/META-INF/services.xml
* (add) axis2/modules/tool/axis2-aar-maven-plugin/src/it/test1/verify.bsh
* (add) axis2/modules/tool/axis2-aar-maven-plugin/src/it/test2
* (add) axis2/modules/tool/axis2-aar-maven-plugin/src/it/test2/AdditionalDir
* (add) axis2/modules/tool/axis2-aar-maven-plugin/src/it/test2/pom.xml
* (add) axis2/modules/tool/axis2-aar-maven-plugin/src/it/test2/services.xml
* (add) axis2/modules/tool/axis2-aar-maven-plugin/src/it/test2/simple.wsdl
* (add) axis2/modules/tool/axis2-aar-maven-plugin/src/it/test2/verify.bsh
* (delete) axis2/modules/tool/axis2-aar-maven-plugin/src/test/java
* (delete) axis2/modules/tool/axis2-aar-maven-plugin/src/test/resources
AXIS2-5781: Use maven-invoker-plugin to execute tests for 
axis2-wsdl2code-maven-plugin. (veithen: rev 1800518)
* (edit) axis2/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml
* (add) axis2/modules/tool/axis2-wsdl2code-maven-plugin/src/it
* (add) axis2/modules/tool/axis2-wsdl2code-maven-plugin/src/it/test1
* (edit) axis2/modules/tool/axis2-wsdl2code-maven-plugin/src/it/test1/pom.xml
* (add) axis2/modules/tool/axis2-wsdl2code-maven-plugin/src/it/test2
* (edit) axis2/modules/tool/axis2-wsdl2code-maven-plugin/src/it/test2/pom.xml
* (delete) axis2/modules/tool/axis2-wsdl2code-maven-plugin/src/test/java
* (delete) axis2/modules/tool/axis2-wsdl2code-maven-plugin/src/test/test1
* (delete) axis2/modules/tool/axis2-wsdl2code-maven-plugin/src/test/test2
* (edit) axis2/pom.xml


> Maven Build - Module: kernel - generates / modifies file under source-control 
> - should build in output directory
> 
>
> Key: AXIS2-5781
> URL: https://issues.apache.org/jira/browse/AXIS2-5781
> Project: Axis2
>  Issue Type: Bug
>  Components: kernel
>Affects Versions: 1.7.3
>Reporter: Jeff Thomas
>Priority: Minor
>
> Maven Build for axis2-kernel (./modules/kernel/pom.xml).
> In the axis2-kernel Maven Module (and at in at least the axis2-integration 
> module as well) test ant-scripts and unit-tests run against the 
> "./test-resources" directory instead of the "./target/test-resources" 
> directory.
> In the interest of Maven "compliance" the build process should not edit, 
> touch or otherwise "dirty" source-code files.
> Examples:
> 1.  The Ant-script "test-resources/deployment/service2/build.xml" creates 
> temporary directories, generates content, and removes these temporary 
> directories directly within the "test-resources" 

[jira] [Commented] (AXIS2-5781) Maven Build - Module: kernel - generates / modifies file under source-control - should build in output directory

2017-01-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5781?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15824506#comment-15824506
 ] 

Hudson commented on AXIS2-5781:
---

SUCCESS: Integrated in Jenkins build Axis2 #3643 (See 
[https://builds.apache.org/job/Axis2/3643/])
AXIS2-5781: Don't let SchemaWriterTest overwrite files in the source tree. 
(veithen: rev 1779074)
* (edit) 
axis2/modules/codegen/test/org/apache/axis2/wsdl/codegen/writer/SchemaWriterTest.java


> Maven Build - Module: kernel - generates / modifies file under source-control 
> - should build in output directory
> 
>
> Key: AXIS2-5781
> URL: https://issues.apache.org/jira/browse/AXIS2-5781
> Project: Axis2
>  Issue Type: Bug
>  Components: kernel
>Affects Versions: 1.7.3
>Reporter: Jeff Thomas
>Priority: Minor
>
> Maven Build for axis2-kernel (./modules/kernel/pom.xml).
> In the axis2-kernel Maven Module (and at in at least the axis2-integration 
> module as well) test ant-scripts and unit-tests run against the 
> "./test-resources" directory instead of the "./target/test-resources" 
> directory.
> In the interest of Maven "compliance" the build process should not edit, 
> touch or otherwise "dirty" source-code files.
> Examples:
> 1.  The Ant-script "test-resources/deployment/service2/build.xml" creates 
> temporary directories, generates content, and removes these temporary 
> directories directly within the "test-resources" source directory.
> 2. The Unit-Test utility method 'readWSDLFromFile' in XMLSchemaTest creates a 
> File reference to a file in "test-resources" and performs the following:
> {code:java}XMLPrettyPrinter.prettify(file);{code}
> This updates (dirties) the input source-file - on my windows build it changes 
> the line-endings from Unix to Windows.
> The current Maven POMs already take care of copying the "test-resources" 
> directory to "target/test-resources" so all of the required input files and 
> ant-scripts are available there.  Therefore, the POM ANT "dir" properties and 
> the JUnit tests just need to be updated to use these instead of the 
> source-code originals.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Commented] (AXIS2-5781) Maven Build - Module: kernel - generates / modifies file under source-control - should build in output directory

2017-01-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5781?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15824418#comment-15824418
 ] 

Hudson commented on AXIS2-5781:
---

SUCCESS: Integrated in Jenkins build Axis2 #3642 (See 
[https://builds.apache.org/job/Axis2/3642/])
AXIS2-5781: Don't overwrite files in the source tree. (veithen: rev 1779069)
* (edit) 
axis2/modules/kernel/test/org/apache/axis2/description/java2wsdl/XMLSchemaTest.java


> Maven Build - Module: kernel - generates / modifies file under source-control 
> - should build in output directory
> 
>
> Key: AXIS2-5781
> URL: https://issues.apache.org/jira/browse/AXIS2-5781
> Project: Axis2
>  Issue Type: Bug
>  Components: kernel
>Affects Versions: 1.7.3
>Reporter: Jeff Thomas
>Priority: Minor
>
> Maven Build for axis2-kernel (./modules/kernel/pom.xml).
> In the axis2-kernel Maven Module (and at in at least the axis2-integration 
> module as well) test ant-scripts and unit-tests run against the 
> "./test-resources" directory instead of the "./target/test-resources" 
> directory.
> In the interest of Maven "compliance" the build process should not edit, 
> touch or otherwise "dirty" source-code files.
> Examples:
> 1.  The Ant-script "test-resources/deployment/service2/build.xml" creates 
> temporary directories, generates content, and removes these temporary 
> directories directly within the "test-resources" source directory.
> 2. The Unit-Test utility method 'readWSDLFromFile' in XMLSchemaTest creates a 
> File reference to a file in "test-resources" and performs the following:
> {code:java}XMLPrettyPrinter.prettify(file);{code}
> This updates (dirties) the input source-file - on my windows build it changes 
> the line-endings from Unix to Windows.
> The current Maven POMs already take care of copying the "test-resources" 
> directory to "target/test-resources" so all of the required input files and 
> ant-scripts are available there.  Therefore, the POM ANT "dir" properties and 
> the JUnit tests just need to be updated to use these instead of the 
> source-code originals.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org