Author: vinoski
Date: Mon Nov 13 22:46:41 2006
New Revision: 474676
URL: http://svn.apache.org/viewvc?view=rev&rev=474676
Log:
first stab at building distributions with maven
Added:
incubator/qpid/branches/mvn/distribution/
incubator/qpid/branches/mvn/distribution/pom.xml (with props)
incubator/qpid/branches/mvn/distribution/src/
incubator/qpid/branches/mvn/distribution/src/main/
incubator/qpid/branches/mvn/distribution/src/main/assembly/
incubator/qpid/branches/mvn/distribution/src/main/assembly/bin.xml (with
props)
incubator/qpid/branches/mvn/distribution/src/main/assembly/src.xml (with
props)
incubator/qpid/branches/mvn/distribution/src/main/release/
incubator/qpid/branches/mvn/distribution/src/main/release/DISCLAIMER
incubator/qpid/branches/mvn/distribution/src/main/release/docs/
incubator/qpid/branches/mvn/distribution/src/main/release/docs/RELEASE_NOTES.txt
(with props)
Modified:
incubator/qpid/branches/mvn/broker/etc/qpid-server.conf
incubator/qpid/branches/mvn/broker/pom.xml
incubator/qpid/branches/mvn/common/pom.xml
incubator/qpid/branches/mvn/pom.xml
Modified: incubator/qpid/branches/mvn/broker/etc/qpid-server.conf
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/mvn/broker/etc/qpid-server.conf?view=diff&rev=474676&r1=474675&r2=474676
==============================================================================
--- incubator/qpid/branches/mvn/broker/etc/qpid-server.conf (original)
+++ incubator/qpid/branches/mvn/broker/etc/qpid-server.conf Mon Nov 13 22:46:41
2006
@@ -17,7 +17,7 @@
# under the License.
#
-QPID_LIBS=$QPID_HOME/lib/broker-launch.jar:$QPID_HOME/lib/bdbstore-launch.jar
+QPID_LIBS=$QPID_HOME/lib/qpid-incubator.jar:$QPID_HOME/lib/bdbstore-launch.jar
export JAVA=java \
JAVA_VM=-server \
Modified: incubator/qpid/branches/mvn/broker/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/mvn/broker/pom.xml?view=diff&rev=474676&r1=474675&r2=474676
==============================================================================
--- incubator/qpid/branches/mvn/broker/pom.xml (original)
+++ incubator/qpid/branches/mvn/broker/pom.xml Mon Nov 13 22:46:41 2006
@@ -66,6 +66,10 @@
<artifactId>qpid-common</artifactId>
</dependency>
<dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ </dependency>
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
Modified: incubator/qpid/branches/mvn/common/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/mvn/common/pom.xml?view=diff&rev=474676&r1=474675&r2=474676
==============================================================================
--- incubator/qpid/branches/mvn/common/pom.xml (original)
+++ incubator/qpid/branches/mvn/common/pom.xml Mon Nov 13 22:46:41 2006
@@ -79,6 +79,10 @@
<dependencies>
<dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.apache.mina</groupId>
<artifactId>mina-core</artifactId>
</dependency>
Added: incubator/qpid/branches/mvn/distribution/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/mvn/distribution/pom.xml?view=auto&rev=474676
==============================================================================
--- incubator/qpid/branches/mvn/distribution/pom.xml (added)
+++ incubator/qpid/branches/mvn/distribution/pom.xml Mon Nov 13 22:46:41 2006
@@ -0,0 +1,110 @@
+<!--
+ 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.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.qpid</groupId>
+ <artifactId>qpid-distribution</artifactId>
+ <packaging>jar</packaging>
+ <name>Qpid Distribution</name>
+ <version>1.0-incubator-M1-SNAPSHOT</version>
+
+ <parent>
+ <groupId>org.apache.qpid</groupId>
+ <artifactId>qpid</artifactId>
+ <version>1.0-incubator-M1-SNAPSHOT</version>
+ </parent>
+
+ <properties>
+ <topDirectoryLocation>..</topDirectoryLocation>
+ <java.source.version>1.5</java.source.version>
+ <qpid.version>${pom.version}</qpid.version>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>qpid-common</artifactId>
+ <version>${pom.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>qpid-broker</artifactId>
+ <version>${pom.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>qpid-client</artifactId>
+ <version>${pom.version}</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <resources>
+ <resource>
+ <directory>src/main/java</directory>
+ <includes>
+ <include>**/*</include>
+ </includes>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>${java.source.version}</source>
+ <target>${java.source.version}</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>${assembly.version}</version>
+ <executions>
+ <execution>
+ <id>distribution-package</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/assembly/bin.xml</descriptor>
+ <descriptor>src/main/assembly/src.xml</descriptor>
+ </descriptors>
+ <finalName>qpid-${pom.version}</finalName>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <finalName>qpid-incubator</finalName>
+ <archive>
+ <manifest>
+ <addClasspath>true</addClasspath>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Propchange: incubator/qpid/branches/mvn/distribution/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/qpid/branches/mvn/distribution/pom.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange: incubator/qpid/branches/mvn/distribution/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added: incubator/qpid/branches/mvn/distribution/src/main/assembly/bin.xml
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/mvn/distribution/src/main/assembly/bin.xml?view=auto&rev=474676
==============================================================================
--- incubator/qpid/branches/mvn/distribution/src/main/assembly/bin.xml (added)
+++ incubator/qpid/branches/mvn/distribution/src/main/assembly/bin.xml Mon Nov
13 22:46:41 2006
@@ -0,0 +1,153 @@
+<?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.
+-->
+<assembly>
+ <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+ <id>java-bin</id>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+
+ <fileSets>
+ <fileSet>
+ <directory>src/main/release</directory>
+ <outputDirectory>qpid-${qpid.version}</outputDirectory>
+ <includes>
+ <include>DISCLAIMER</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>..</directory>
+ <outputDirectory>qpid-${qpid.version}</outputDirectory>
+ <includes>
+ <include>*.txt</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>src/main/release/etc</directory>
+ <outputDirectory>qpid-${qpid.version}/etc</outputDirectory>
+ <includes>
+ <include>logging.properties</include>
+ <include>log4j.properties</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>src/main/release/docs</directory>
+ <outputDirectory>qpid-${qpid.version}/docs</outputDirectory>
+ <includes>
+ <include>RELEASE_NOTES.txt</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>target</directory>
+ <outputDirectory>qpid-${qpid.version}/lib</outputDirectory>
+ <includes>
+ <include>qpid-incubator.jar</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+ <files>
+ <!-- due to a bug in the assembly plugin (MASSEMBLY-133) you have
+ to use decimal numbers to specify fileMode -->
+ <file>
+ <source>../common/etc/qpid-run.conf</source>
+ <outputDirectory>qpid-${qpid.version}/etc</outputDirectory>
+ <destName>qpid-run.conf</destName>
+ <fileMode>420</fileMode>
+ </file>
+ <file>
+ <source>../broker/etc/config.xml</source>
+ <outputDirectory>qpid-${qpid.version}/etc</outputDirectory>
+ <destName>config.xml</destName>
+ <fileMode>420</fileMode>
+ </file>
+ <file>
+ <source>../broker/etc/log4j.xml</source>
+ <outputDirectory>qpid-${qpid.version}/etc</outputDirectory>
+ <destName>log4j.xml</destName>
+ <fileMode>420</fileMode>
+ </file>
+ <file>
+ <source>../broker/etc/passwd</source>
+ <outputDirectory>qpid-${qpid.version}/etc</outputDirectory>
+ <destName>passwd</destName>
+ <fileMode>420</fileMode>
+ </file>
+ <file>
+ <source>../broker/etc/qpid-server.conf</source>
+ <outputDirectory>qpid-${qpid.version}/etc</outputDirectory>
+ <destName>qpid-server.conf</destName>
+ <fileMode>420</fileMode>
+ </file>
+ <file>
+ <source>../broker/etc/virtualhosts.xml</source>
+ <outputDirectory>qpid-${qpid.version}/etc</outputDirectory>
+ <destName>virtualhosts.xml</destName>
+ <fileMode>420</fileMode>
+ </file>
+ <file>
+ <source>../common/bin/qpid-run</source>
+ <outputDirectory>qpid-${qpid.version}/bin</outputDirectory>
+ <destName>qpid-run</destName>
+ <fileMode>493</fileMode>
+ </file>
+ <file>
+ <source>../broker/bin/qpid-server</source>
+ <outputDirectory>qpid-${qpid.version}/bin</outputDirectory>
+ <destName>qpid-server</destName>
+ <fileMode>493</fileMode>
+ </file>
+ <file>
+ <source>../broker/bin/qpid-server.bat</source>
+ <outputDirectory>qpid-${qpid.version}/bin</outputDirectory>
+ <destName>qpid-server.bat</destName>
+ <fileMode>493</fileMode>
+ </file>
+ <file>
+ <source>../broker/bin/run.bat</source>
+ <outputDirectory>qpid-${qpid.version}/bin</outputDirectory>
+ <destName>run.bat</destName>
+ <fileMode>493</fileMode>
+ </file>
+ <file>
+ <source>../broker/bin/run.sh</source>
+ <outputDirectory>qpid-${qpid.version}/bin</outputDirectory>
+ <destName>run.sh</destName>
+ <fileMode>493</fileMode>
+ </file>
+ <file>
+ <source>../broker/bin/runAll</source>
+ <outputDirectory>qpid-${qpid.version}/bin</outputDirectory>
+ <destName>runAll</destName>
+ <fileMode>493</fileMode>
+ </file>
+ </files>
+ <dependencySets>
+ <dependencySet>
+ <outputDirectory>qpid-${qpid.version}/lib</outputDirectory>
+ <unpack>false</unpack>
+ <excludes>
+ <exclude>org.apache.qpid:qpid-distribution</exclude>
+ </excludes>
+ <scope>runtime</scope>
+ </dependencySet>
+ </dependencySets>
+</assembly>
Propchange: incubator/qpid/branches/mvn/distribution/src/main/assembly/bin.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/qpid/branches/mvn/distribution/src/main/assembly/bin.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange: incubator/qpid/branches/mvn/distribution/src/main/assembly/bin.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added: incubator/qpid/branches/mvn/distribution/src/main/assembly/src.xml
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/mvn/distribution/src/main/assembly/src.xml?view=auto&rev=474676
==============================================================================
--- incubator/qpid/branches/mvn/distribution/src/main/assembly/src.xml (added)
+++ incubator/qpid/branches/mvn/distribution/src/main/assembly/src.xml Mon Nov
13 22:46:41 2006
@@ -0,0 +1,72 @@
+<?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.
+-->
+<assembly>
+ <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+ <id>java-src</id>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+
+ <fileSets>
+ <fileSet>
+ <directory>src/main/release</directory>
+ <outputDirectory>qpid-${qpid.version}-src</outputDirectory>
+ <includes>
+ <include>DISCLAIMER</include>
+ <include>LICENSE</include>
+ <include>licenses/*.*</include>
+ <include>NOTICE</include>
+ <include>README</include>
+ <include>BUILDING.txt</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>..</directory>
+ <outputDirectory>qpid-${qpid.version}-src</outputDirectory>
+ <includes>
+ <include>**/*</include>
+ </includes>
+ <excludes>
+ <exclude>build.xml</exclude>
+ <exclude>distribution/build.xml</exclude>
+ <exclude>benchmark</exclude>
+ <exclude>benchmark/**/*</exclude>
+ <exclude>**/target</exclude>
+ <exclude>**/target/**/*</exclude>
+ <exclude>**/build</exclude>
+ <exclude>**/build/**/*</exclude>
+ <exclude>**/.settings</exclude>
+ <exclude>**/.classpath</exclude>
+ <exclude>**/.project</exclude>
+ <exclude>**/.wtpmodules</exclude>
+ <exclude>**/surefire*</exclude>
+ <exclude>**/cobertura.ser</exclude>
+ <exclude>bin</exclude>
+ <exclude>bin/*</exclude>
+ <exclude>lib</exclude>
+ <exclude>lib/**/*</exclude>
+ <exclude>**/var/journal</exclude>
+ <exclude>**/build.out*</exclude>
+ </excludes>
+ </fileSet>
+ </fileSets>
+</assembly>
Propchange: incubator/qpid/branches/mvn/distribution/src/main/assembly/src.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/qpid/branches/mvn/distribution/src/main/assembly/src.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange: incubator/qpid/branches/mvn/distribution/src/main/assembly/src.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added: incubator/qpid/branches/mvn/distribution/src/main/release/DISCLAIMER
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/mvn/distribution/src/main/release/DISCLAIMER?view=auto&rev=474676
==============================================================================
--- incubator/qpid/branches/mvn/distribution/src/main/release/DISCLAIMER (added)
+++ incubator/qpid/branches/mvn/distribution/src/main/release/DISCLAIMER Mon
Nov 13 22:46:41 2006
@@ -0,0 +1,5 @@
+Apache CXF is an effort undergoing incubation at the Apache Software
Foundation (ASF), sponsored by the Apache Incubator PMC.
+
+Incubation is required of all newly accepted projects until a further review
indicates that the infrastructure, communications, and decision making process
have stabilized in a manner consistent with other successful ASF projects.
+
+While incubation status is not necessarily a reflection of the completeness or
stability of the code, it does indicate that the project has yet to be fully
endorsed by the ASF.
Added:
incubator/qpid/branches/mvn/distribution/src/main/release/docs/RELEASE_NOTES.txt
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/mvn/distribution/src/main/release/docs/RELEASE_NOTES.txt?view=auto&rev=474676
==============================================================================
---
incubator/qpid/branches/mvn/distribution/src/main/release/docs/RELEASE_NOTES.txt
(added)
+++
incubator/qpid/branches/mvn/distribution/src/main/release/docs/RELEASE_NOTES.txt
Mon Nov 13 22:46:41 2006
@@ -0,0 +1,74 @@
+Apache Incubator Qpid Java M1 Release Notes
+-------------------------------------------
+
+The Qpid M1 release is intended to serve as a useful baseline release
+for the project, allowing interested users to use the current featureset.
+
+For full details of Qpid capabilities, as they currently stand, see our
+detailed project documentation at:
+
+http://cwiki.apache.org/confluence/display/qpid/Qpid+Java+Documentation
+
+From the link above you can access our Getting Started Guide, FAQ, Build How To
+and detailed developer documentation.
+
+
+Known Issues/OUtstanding Work
+-----------------------------
+
+You can view the outstanding task list for Qpid by visiting our JIRA:
+
+http://issues.apache.org/jira/browse/QPID
+
+
+M1 Tasks Completed
+-------------------
+
+The set of JIRA tasks completed as part of the M1 effort is available at:
+
+http://cwiki.apache.org/confluence/display/qpid/Qpid+Java+M1+Release+Notes
+
+This list is copied below for convenience:
+
+Bugs
+----
+http://issues.apache.org/jira/browse/QPID-4 - Remove '/' and ':' from
generated queue names
+http://issues.apache.org/jira/browse/QPID-7 - Occasionally messages are ack'd
more than once
+http://issues.apache.org/jira/browse/QPID-10- Broker throughput falls off with
transactions
+http://issues.apache.org/jira/browse/QPID-56 - AMQQueueMBean - MessageCount on
the management interface is not correct.
+http://issues.apache.org/jira/browse/QPID-58 - Creating a QueueReceiver
results in ClassCastException
+http://issues.apache.org/jira/browse/QPID-66 - AMQSession implementation of
TopicSession and QueueSession interfaces not JMS compliant
+http://issues.apache.org/jira/browse/QPID-68 - Ant build system fails if the
project path contains a space
+http://issues.apache.org/jira/browse/QPID-69 - Race condition in Delivery
Manager
+
+Improvements
+------------
+http://issues.apache.org/jira/browse/QPID-36 - Add high and low watermark to
flow control
+http://issues.apache.org/jira/browse/QPID-44 - Add high and low watermark to
flow control
+http://issues.apache.org/jira/browse/QPID-57 - AMQQueueMBean - Message header
attributes should be sent along with message content.
+
+
+New Features
+------------
+http://issues.apache.org/jira/browse/QPID-13 - Add option to include prefix
and suffix in log file name for broker
+http://issues.apache.org/jira/browse/QPID-23 - Extend JNDI support provided to
include initial context factory
+http://issues.apache.org/jira/browse/QPID-29 - Provide support for using Qpid
JMX with Tivoli for application monitoring
+http://issues.apache.org/jira/browse/QPID-30 - Allow configuration of
working/log directories written to by broker
+http://issues.apache.org/jira/browse/QPID-40 - Implement tx.select, tx.commit
& tx.rollback from AMQP
+
+
+Tasks
+-----
+http://issues.apache.org/jira/browse/QPID-18 - Update Java client and broker
to MINA 1.0 release
+http://issues.apache.org/jira/browse/QPID-73 - Create Build Artifacts for
release process using ant/maven
+http://issues.apache.org/jira/browse/QPID-74 - Create source distribtuion
using build system
+http://issues.apache.org/jira/browse/QPID-75 - Create Standard Binary
distribution using build system
+
+
+
+
+
+
+
+
+
Propchange:
incubator/qpid/branches/mvn/distribution/src/main/release/docs/RELEASE_NOTES.txt
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/qpid/branches/mvn/distribution/src/main/release/docs/RELEASE_NOTES.txt
------------------------------------------------------------------------------
svn:mime-type = text/plain
Modified: incubator/qpid/branches/mvn/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/mvn/pom.xml?view=diff&rev=474676&r1=474675&r2=474676
==============================================================================
--- incubator/qpid/branches/mvn/pom.xml (original)
+++ incubator/qpid/branches/mvn/pom.xml Mon Nov 13 22:46:41 2006
@@ -460,23 +460,6 @@
</dependencies>
</dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.easymock</groupId>
- <artifactId>easymockclassextension</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
<reporting>
<plugins>
<plugin>
@@ -520,12 +503,7 @@
</reporting>
<repositories>
- <repository>
- <id>java.net</id>
- <name>java.net Maven Repository</name>
- <url>https://maven-repository.dev.java.net/nonav/repository/</url>
- <layout>legacy</layout>
- </repository>
+ <!-- not picking up any snapshots at the moment
<repository>
<id>apache.snapshots</id>
<name>Apache SNAPSHOT Repository</name>
@@ -534,6 +512,7 @@
<enabled>true</enabled>
</snapshots>
</repository>
+ -->
</repositories>
<pluginRepositories>