Repository: incubator-juneau Updated Branches: refs/heads/master 1ff235752 -> fe32f51e2
Clean up .gitignore files and make sure logs are generated in target. Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau/commit/fe32f51e Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau/tree/fe32f51e Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau/diff/fe32f51e Branch: refs/heads/master Commit: fe32f51e2172b5274f1c741f282ae0b429ba858a Parents: 1ff2357 Author: JamesBognar <[email protected]> Authored: Sat Apr 22 09:12:31 2017 -0400 Committer: JamesBognar <[email protected]> Committed: Sat Apr 22 09:12:31 2017 -0400 ---------------------------------------------------------------------- juneau-all/.gitignore | 2 +- juneau-core-rdf/.classpath | 28 ++++++++++++++ juneau-core-rdf/.gitignore | 4 +- juneau-core-test/.classpath | 32 ++++++++++++++++ juneau-core-test/.gitignore | 4 +- juneau-core/.classpath | 22 +++++++++++ juneau-core/.gitignore | 3 +- juneau-distrib/.gitignore | 2 +- juneau-examples-rest/.classpath | 55 +++++++++++++++++++++++++++ juneau-examples-rest/.gitignore | 5 +-- juneau-examples-rest/examples.cfg | 6 ++- juneau-microservice-template/.classpath | 43 +++++++++++++++++++++ juneau-microservice-template/.gitignore | 2 +- juneau-microservice/.classpath | 49 ++++++++++++++++++++++++ juneau-microservice/.gitignore | 2 +- juneau-releng/.classpath | 18 +++++++++ juneau-releng/.gitignore | 7 +--- juneau-rest-client/.classpath | 34 +++++++++++++++++ juneau-rest-client/.gitignore | 3 +- juneau-rest-jaxrs/.classpath | 32 ++++++++++++++++ juneau-rest-jaxrs/.gitignore | 3 +- juneau-rest-test/.classpath | 57 ++++++++++++++++++++++++++++ juneau-rest-test/.gitignore | 3 +- juneau-rest-test/juneau-rest-test.cfg | 2 +- juneau-rest/.classpath | 33 ++++++++++++++++ juneau-rest/.gitignore | 2 +- pom.xml | 2 - 27 files changed, 421 insertions(+), 34 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-all/.gitignore ---------------------------------------------------------------------- diff --git a/juneau-all/.gitignore b/juneau-all/.gitignore index b5ffa7e..d274d47 100644 --- a/juneau-all/.gitignore +++ b/juneau-all/.gitignore @@ -1,3 +1,3 @@ /target/ /.settings/ -/.classpath +/.DS_Store http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-core-rdf/.classpath ---------------------------------------------------------------------- diff --git a/juneau-core-rdf/.classpath b/juneau-core-rdf/.classpath new file mode 100644 index 0000000..28f4299 --- /dev/null +++ b/juneau-core-rdf/.classpath @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + *************************************************************************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations under the License. * + *************************************************************************************************************************** +--> +<classpath> + <classpathentry including="**/*.java" kind="src" path="src/main/java"/> + <classpathentry kind="src" path="/juneau-core"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-core/2.7.1/jena-core-2.7.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-iri/0.9.1/jena-iri-0.9.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-log4j12/1.6.4/slf4j-log4j12-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.16/log4j-1.2.16.jar"/> + <classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.10.0/xercesImpl-2.10.0.jar"/> + <classpathentry kind="var" path="M2_REPO/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> + <classpathentry kind="output" path="target/classes"/> +</classpath> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-core-rdf/.gitignore ---------------------------------------------------------------------- diff --git a/juneau-core-rdf/.gitignore b/juneau-core-rdf/.gitignore index 5b1eab9..d274d47 100644 --- a/juneau-core-rdf/.gitignore +++ b/juneau-core-rdf/.gitignore @@ -1,5 +1,3 @@ /target/ -/.DS_Store /.settings/ -/.classpath -/bin/ +/.DS_Store http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-core-test/.classpath ---------------------------------------------------------------------- diff --git a/juneau-core-test/.classpath b/juneau-core-test/.classpath new file mode 100644 index 0000000..5dc314a --- /dev/null +++ b/juneau-core-test/.classpath @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + *************************************************************************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations under the License. * + *************************************************************************************************************************** +--> +<classpath> + <classpathentry including="**/*.java" kind="src" output="target/test-classes" path="src/test/java"/> + <classpathentry kind="src" path="src/main/java"/> + <classpathentry kind="src" path="/juneau-core"/> + <classpathentry kind="src" path="/juneau-core-rdf"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-core/2.7.1/jena-core-2.7.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-iri/0.9.1/jena-iri-0.9.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-log4j12/1.6.4/slf4j-log4j12-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.16/log4j-1.2.16.jar"/> + <classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.10.0/xercesImpl-2.10.0.jar"/> + <classpathentry kind="var" path="M2_REPO/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar"/> + <classpathentry kind="var" path="M2_REPO/junit/junit/4.11/junit-4.11.jar"/> + <classpathentry kind="var" path="M2_REPO/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> + <classpathentry kind="output" path="target/classes"/> +</classpath> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-core-test/.gitignore ---------------------------------------------------------------------- diff --git a/juneau-core-test/.gitignore b/juneau-core-test/.gitignore index 5b1eab9..d274d47 100644 --- a/juneau-core-test/.gitignore +++ b/juneau-core-test/.gitignore @@ -1,5 +1,3 @@ /target/ -/.DS_Store /.settings/ -/.classpath -/bin/ +/.DS_Store http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-core/.classpath ---------------------------------------------------------------------- diff --git a/juneau-core/.classpath b/juneau-core/.classpath new file mode 100644 index 0000000..4a0fbb7 --- /dev/null +++ b/juneau-core/.classpath @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + *************************************************************************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations under the License. * + *************************************************************************************************************************** +--> +<classpath> + <classpathentry kind="src" path="src/main/javadoc"/> + <classpathentry kind="src" path="src/main/java"/> + <classpathentry excluding="**/*.java" kind="src" path="src/main/resources"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> + <classpathentry kind="output" path="target/classes"/> +</classpath> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-core/.gitignore ---------------------------------------------------------------------- diff --git a/juneau-core/.gitignore b/juneau-core/.gitignore index 1401e35..9dd6a50 100644 --- a/juneau-core/.gitignore +++ b/juneau-core/.gitignore @@ -1,5 +1,4 @@ /target/ -/.DS_Store /.settings/ -/.classpath +/.DS_Store /TODO.txt http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-distrib/.gitignore ---------------------------------------------------------------------- diff --git a/juneau-distrib/.gitignore b/juneau-distrib/.gitignore index a6e051e..d274d47 100644 --- a/juneau-distrib/.gitignore +++ b/juneau-distrib/.gitignore @@ -1,3 +1,3 @@ /target/ -/.DS_Store /.settings/ +/.DS_Store http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-examples-rest/.classpath ---------------------------------------------------------------------- diff --git a/juneau-examples-rest/.classpath b/juneau-examples-rest/.classpath new file mode 100644 index 0000000..13d8f35 --- /dev/null +++ b/juneau-examples-rest/.classpath @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + *************************************************************************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations under the License. * + *************************************************************************************************************************** +--> +<classpath> + <classpathentry including="**/*.java" kind="src" output="target/test-classes" path="src/test/java"/> + <classpathentry including="**/*.java" kind="src" path="src/main/java"/> + <classpathentry excluding="**/*.java" kind="src" path="src/main/resources"/> + <classpathentry kind="var" path="M2_REPO/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/mail/mail/1.4.1/mail-1.4.1.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/activation/activation/1.1/activation-1.1.jar"/> + <classpathentry kind="src" path="/juneau-microservice"/> + <classpathentry kind="src" path="/juneau-rest"/> + <classpathentry kind="src" path="/juneau-core"/> + <classpathentry kind="src" path="/juneau-core-rdf"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-core/2.7.1/jena-core-2.7.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-iri/0.9.1/jena-iri-0.9.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-log4j12/1.6.4/slf4j-log4j12-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.16/log4j-1.2.16.jar"/> + <classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.10.0/xercesImpl-2.10.0.jar"/> + <classpathentry kind="var" path="M2_REPO/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar"/> + <classpathentry kind="src" path="/juneau-rest-client"/> + <classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpclient/4.5/httpclient-4.5.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpcore/4.4.1/httpcore-4.4.1.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-codec/commons-codec/1.9/commons-codec-1.9.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpmime/4.5/httpmime-4.5.jar"/> + <classpathentry kind="var" path="M2_REPO/org/eclipse/jetty/aggregate/jetty-all-server/8.1.0.v20120127/jetty-all-server-8.1.0.v20120127.jar"/> + <classpathentry kind="var" path="M2_REPO/org/mortbay/jetty/servlet-api/3.0.20100224/servlet-api-3.0.20100224.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1.1/geronimo-jta_1.1_spec-1.1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/geronimo/specs/geronimo-jaspic_1.0_spec/1.0/geronimo-jaspic_1.0_spec-1.0.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.1.1/geronimo-annotation_1.0_spec-1.1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm-commons/3.1/asm-commons-3.1.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm-tree/3.1/asm-tree-3.1.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm/3.1/asm-3.1.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-io/commons-io/2.2/commons-io-2.2.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/derby/derby/10.10.2.0/derby-10.10.2.0.jar"/> + <classpathentry kind="var" path="M2_REPO/junit/junit/4.11/junit-4.11.jar"/> + <classpathentry kind="var" path="M2_REPO/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> + <classpathentry kind="output" path="target/classes"/> +</classpath> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-examples-rest/.gitignore ---------------------------------------------------------------------- diff --git a/juneau-examples-rest/.gitignore b/juneau-examples-rest/.gitignore index 8ca27ce..d274d47 100644 --- a/juneau-examples-rest/.gitignore +++ b/juneau-examples-rest/.gitignore @@ -1,6 +1,3 @@ -/logs/ -/.DS_Store -/derby.log /target/ /.settings/ -/.classpath +/.DS_Store http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-examples-rest/examples.cfg ---------------------------------------------------------------------- diff --git a/juneau-examples-rest/examples.cfg b/juneau-examples-rest/examples.cfg index 6b221b6..e41894e 100755 --- a/juneau-examples-rest/examples.cfg +++ b/juneau-examples-rest/examples.cfg @@ -106,7 +106,7 @@ allowRenegotiate = false # See FileHandler Java class for details. #================================================================================ [Logging] -logDir = logs +logDir = $S{user.dir}/target/logs logFile = sample.%g.log dateFormat = yyyy.MM.dd hh:mm:ss format = [{date} {level}] {msg}%n @@ -130,6 +130,8 @@ org.eclipse.jetty.util.log.class = org.eclipse.jetty.util.log.StrErrLog # Jetty logging level org.eclipse.jetty.LEVEL = WARN +derby.stream.error.file = $S{user.dir}/target/logs/derby.log + #================================================================================ # DockerRegistryResource properties #================================================================================ @@ -141,7 +143,7 @@ url = http://docker.apache.org:5000/v1 #================================================================================ [SqlQueryResource] driver = org.apache.derby.jdbc.EmbeddedDriver -directory = $SWITCH{$S{os.name},*win*,C:/testDB,/tmp/testDB} +directory = $S{user.dir}/target/derby/testDB connectionUrl = jdbc:derby:$C{SqlQueryResource/directory};create=true allowTempUpdates = true includeRowNums = true http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-microservice-template/.classpath ---------------------------------------------------------------------- diff --git a/juneau-microservice-template/.classpath b/juneau-microservice-template/.classpath new file mode 100755 index 0000000..14a96fe --- /dev/null +++ b/juneau-microservice-template/.classpath @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + *************************************************************************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations under the License. * + *************************************************************************************************************************** +--> +<classpath> + <classpathentry kind="src" path="/juneau-core"/> + <classpathentry kind="src" path="/juneau-rest"/> + <classpathentry kind="src" path="/juneau-microservice"/> + <classpathentry kind="src" output="target/classes" path="src/main/java"> + <attributes> + <attribute name="optional" value="true"/> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry kind="src" output="target/test-classes" path="src/test/java"> + <attributes> + <attribute name="optional" value="true"/> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"> + <attributes> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry exported="true" kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> + <attributes> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry kind="output" path="target/classes"/> +</classpath> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-microservice-template/.gitignore ---------------------------------------------------------------------- diff --git a/juneau-microservice-template/.gitignore b/juneau-microservice-template/.gitignore index b5ffa7e..d274d47 100644 --- a/juneau-microservice-template/.gitignore +++ b/juneau-microservice-template/.gitignore @@ -1,3 +1,3 @@ /target/ /.settings/ -/.classpath +/.DS_Store http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-microservice/.classpath ---------------------------------------------------------------------- diff --git a/juneau-microservice/.classpath b/juneau-microservice/.classpath new file mode 100644 index 0000000..b4677a6 --- /dev/null +++ b/juneau-microservice/.classpath @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + *************************************************************************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations under the License. * + *************************************************************************************************************************** +--> +<classpath> + <classpathentry including="**/*.java" kind="src" output="target/test-classes" path="src/test/java"/> + <classpathentry including="**/*.java" kind="src" path="src/main/java"/> + <classpathentry kind="var" path="M2_REPO/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/mail/mail/1.4.1/mail-1.4.1.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/activation/activation/1.1/activation-1.1.jar"/> + <classpathentry kind="src" path="/juneau-rest"/> + <classpathentry kind="src" path="/juneau-core"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-core/2.7.1/jena-core-2.7.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-iri/0.9.1/jena-iri-0.9.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-log4j12/1.6.4/slf4j-log4j12-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.16/log4j-1.2.16.jar"/> + <classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.10.0/xercesImpl-2.10.0.jar"/> + <classpathentry kind="var" path="M2_REPO/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar"/> + <classpathentry kind="src" path="/juneau-rest-client"/> + <classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpclient/4.5/httpclient-4.5.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpcore/4.4.1/httpcore-4.4.1.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-codec/commons-codec/1.9/commons-codec-1.9.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpmime/4.5/httpmime-4.5.jar"/> + <classpathentry kind="var" path="M2_REPO/org/eclipse/jetty/aggregate/jetty-all-server/8.1.0.v20120127/jetty-all-server-8.1.0.v20120127.jar"/> + <classpathentry kind="var" path="M2_REPO/org/mortbay/jetty/servlet-api/3.0.20100224/servlet-api-3.0.20100224.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1.1/geronimo-jta_1.1_spec-1.1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/geronimo/specs/geronimo-jaspic_1.0_spec/1.0/geronimo-jaspic_1.0_spec-1.0.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.1.1/geronimo-annotation_1.0_spec-1.1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm-commons/3.1/asm-commons-3.1.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm-tree/3.1/asm-tree-3.1.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm/3.1/asm-3.1.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-io/commons-io/2.2/commons-io-2.2.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> + <classpathentry kind="output" path="target/classes"/> +</classpath> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-microservice/.gitignore ---------------------------------------------------------------------- diff --git a/juneau-microservice/.gitignore b/juneau-microservice/.gitignore index b5ffa7e..d274d47 100644 --- a/juneau-microservice/.gitignore +++ b/juneau-microservice/.gitignore @@ -1,3 +1,3 @@ /target/ /.settings/ -/.classpath +/.DS_Store http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-releng/.classpath ---------------------------------------------------------------------- diff --git a/juneau-releng/.classpath b/juneau-releng/.classpath new file mode 100755 index 0000000..3a75bb4 --- /dev/null +++ b/juneau-releng/.classpath @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + *************************************************************************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations under the License. * + *************************************************************************************************************************** +--> +<classpath> + <classpathentry kind="output" path="bin"/> +</classpath> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-releng/.gitignore ---------------------------------------------------------------------- diff --git a/juneau-releng/.gitignore b/juneau-releng/.gitignore index 799e1d0..d274d47 100644 --- a/juneau-releng/.gitignore +++ b/juneau-releng/.gitignore @@ -1,8 +1,3 @@ -bin/ -build/ -old_source/ -/out.html -/TESTS-TestSuites.xml /target/ /.settings/ -/.classpath +/.DS_Store http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-rest-client/.classpath ---------------------------------------------------------------------- diff --git a/juneau-rest-client/.classpath b/juneau-rest-client/.classpath new file mode 100644 index 0000000..52a0f55 --- /dev/null +++ b/juneau-rest-client/.classpath @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + *************************************************************************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations under the License. * + *************************************************************************************************************************** +--> +<classpath> + <classpathentry including="**/*.java" kind="src" output="target/test-classes" path="src/test/java"/> + <classpathentry including="**/*.java" kind="src" path="src/main/java"/> + <classpathentry kind="src" path="/juneau-core"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-core/2.7.1/jena-core-2.7.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-iri/0.9.1/jena-iri-0.9.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-log4j12/1.6.4/slf4j-log4j12-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.16/log4j-1.2.16.jar"/> + <classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.10.0/xercesImpl-2.10.0.jar"/> + <classpathentry kind="var" path="M2_REPO/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpclient/4.5/httpclient-4.5.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpcore/4.4.1/httpcore-4.4.1.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-codec/commons-codec/1.9/commons-codec-1.9.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpmime/4.5/httpmime-4.5.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> + <classpathentry kind="output" path="target/classes"/> +</classpath> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-rest-client/.gitignore ---------------------------------------------------------------------- diff --git a/juneau-rest-client/.gitignore b/juneau-rest-client/.gitignore index c7e3b12..d274d47 100644 --- a/juneau-rest-client/.gitignore +++ b/juneau-rest-client/.gitignore @@ -1,4 +1,3 @@ /target/ /.settings/ -/.classpath -/bin/ +/.DS_Store http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-rest-jaxrs/.classpath ---------------------------------------------------------------------- diff --git a/juneau-rest-jaxrs/.classpath b/juneau-rest-jaxrs/.classpath new file mode 100644 index 0000000..795ff2e --- /dev/null +++ b/juneau-rest-jaxrs/.classpath @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + *************************************************************************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations under the License. * + *************************************************************************************************************************** +--> +<classpath> + <classpathentry including="**/*.java" kind="src" path="src/main/java"/> + <classpathentry kind="var" path="M2_REPO/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.jar"/> + <classpathentry kind="src" path="/juneau-core"/> + <classpathentry kind="src" path="/juneau-core-rdf"/> + <classpathentry kind="src" path="/juneau-rest"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-core/2.7.1/jena-core-2.7.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-iri/0.9.1/jena-iri-0.9.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-log4j12/1.6.4/slf4j-log4j12-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.16/log4j-1.2.16.jar"/> + <classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.10.0/xercesImpl-2.10.0.jar"/> + <classpathentry kind="var" path="M2_REPO/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> + <classpathentry kind="output" path="target/classes"/> +</classpath> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-rest-jaxrs/.gitignore ---------------------------------------------------------------------- diff --git a/juneau-rest-jaxrs/.gitignore b/juneau-rest-jaxrs/.gitignore index c7e3b12..d274d47 100644 --- a/juneau-rest-jaxrs/.gitignore +++ b/juneau-rest-jaxrs/.gitignore @@ -1,4 +1,3 @@ /target/ /.settings/ -/.classpath -/bin/ +/.DS_Store http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-rest-test/.classpath ---------------------------------------------------------------------- diff --git a/juneau-rest-test/.classpath b/juneau-rest-test/.classpath new file mode 100644 index 0000000..697dd28 --- /dev/null +++ b/juneau-rest-test/.classpath @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + *************************************************************************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations under the License. * + *************************************************************************************************************************** +--> +<classpath> + <classpathentry including="**/*.java" kind="src" output="target/test-classes" path="src/test/java"/> + <classpathentry including="**/*.java" kind="src" path="src/main/java"/> + <classpathentry kind="src" path="src/main/resources"/> + <classpathentry kind="var" path="M2_REPO/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/mail/mail/1.4.1/mail-1.4.1.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/activation/activation/1.1/activation-1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.jar"/> + <classpathentry kind="src" path="/juneau-examples-rest"/> + <classpathentry kind="src" path="/juneau-microservice"/> + <classpathentry kind="src" path="/juneau-rest"/> + <classpathentry kind="src" path="/juneau-core"/> + <classpathentry kind="src" path="/juneau-rest-client"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-core/2.7.1/jena-core-2.7.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-iri/0.9.1/jena-iri-0.9.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-log4j12/1.6.4/slf4j-log4j12-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.16/log4j-1.2.16.jar"/> + <classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.10.0/xercesImpl-2.10.0.jar"/> + <classpathentry kind="var" path="M2_REPO/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpclient/4.5/httpclient-4.5.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpcore/4.4.1/httpcore-4.4.1.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-codec/commons-codec/1.9/commons-codec-1.9.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpmime/4.5/httpmime-4.5.jar"/> + <classpathentry kind="var" path="M2_REPO/org/eclipse/jetty/aggregate/jetty-all-server/8.1.0.v20120127/jetty-all-server-8.1.0.v20120127.jar"/> + <classpathentry kind="var" path="M2_REPO/org/mortbay/jetty/servlet-api/3.0.20100224/servlet-api-3.0.20100224.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1.1/geronimo-jta_1.1_spec-1.1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/geronimo/specs/geronimo-jaspic_1.0_spec/1.0/geronimo-jaspic_1.0_spec-1.0.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.1.1/geronimo-annotation_1.0_spec-1.1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm-commons/3.1/asm-commons-3.1.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm-tree/3.1/asm-tree-3.1.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm/3.1/asm-3.1.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-io/commons-io/2.2/commons-io-2.2.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/derby/derby/10.10.2.0/derby-10.10.2.0.jar"/> + <classpathentry kind="var" path="M2_REPO/junit/junit/4.11/junit-4.11.jar"/> + <classpathentry kind="var" path="M2_REPO/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> + <classpathentry combineaccessrules="false" kind="src" path="/juneau-core-rdf"/> + <classpathentry kind="output" path="target/classes"/> +</classpath> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-rest-test/.gitignore ---------------------------------------------------------------------- diff --git a/juneau-rest-test/.gitignore b/juneau-rest-test/.gitignore index 28aac3d..d274d47 100644 --- a/juneau-rest-test/.gitignore +++ b/juneau-rest-test/.gitignore @@ -1,4 +1,3 @@ -/logs/ /target/ /.settings/ -/.classpath +/.DS_Store http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-rest-test/juneau-rest-test.cfg ---------------------------------------------------------------------- diff --git a/juneau-rest-test/juneau-rest-test.cfg b/juneau-rest-test/juneau-rest-test.cfg index ff6d323..e6dd8f3 100644 --- a/juneau-rest-test/juneau-rest-test.cfg +++ b/juneau-rest-test/juneau-rest-test.cfg @@ -91,7 +91,7 @@ allowRenegotiate = false # See FileHandler Java class for details. #================================================================================ [Logging] -logDir = logs +logDir = $S{user.dir}/target/logs logFile = test.%g.log dateFormat = yyyy.MM.dd hh:mm:ss format = [{date} {level}] {msg}%n http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-rest/.classpath ---------------------------------------------------------------------- diff --git a/juneau-rest/.classpath b/juneau-rest/.classpath new file mode 100644 index 0000000..c467e23 --- /dev/null +++ b/juneau-rest/.classpath @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + *************************************************************************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations under the License. * + *************************************************************************************************************************** +--> +<classpath> + <classpathentry including="**/*.java" kind="src" output="target/test-classes" path="src/test/java"/> + <classpathentry including="**/*.java" kind="src" path="src/main/java"/> + <classpathentry excluding="**/*.java" kind="src" path="src/main/resources"/> + <classpathentry kind="var" path="M2_REPO/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.jar"/> + <classpathentry kind="src" path="/juneau-core"/> + <classpathentry kind="src" path="/juneau-core-rdf"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-core/2.7.1/jena-core-2.7.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/jena/jena-iri/0.9.1/jena-iri-0.9.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-log4j12/1.6.4/slf4j-log4j12-1.6.4.jar"/> + <classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.16/log4j-1.2.16.jar"/> + <classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.10.0/xercesImpl-2.10.0.jar"/> + <classpathentry kind="var" path="M2_REPO/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> + <classpathentry kind="output" path="target/classes"/> +</classpath> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/juneau-rest/.gitignore ---------------------------------------------------------------------- diff --git a/juneau-rest/.gitignore b/juneau-rest/.gitignore index b5ffa7e..d274d47 100644 --- a/juneau-rest/.gitignore +++ b/juneau-rest/.gitignore @@ -1,3 +1,3 @@ /target/ /.settings/ -/.classpath +/.DS_Store http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/fe32f51e/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 9574096..631c8bb 100644 --- a/pom.xml +++ b/pom.xml @@ -141,9 +141,7 @@ <version>0.12</version> <configuration> <excludes> - <exclude>**/*.classpath</exclude> <exclude>**/target/**</exclude> - <exclude>**/*.log*</exclude> <consoleOutput>true</consoleOutput> </excludes> </configuration>
