Author: mgrigorov
Date: Mon Aug 22 07:23:13 2011
New Revision: 1160135
URL: http://svn.apache.org/viewvc?rev=1160135&view=rev
Log:
WICKET-3976 Hide internal sub-modules from users by not deploying them in Maven
repositories
Add the new files...
Added:
wicket/trunk/wicket/src/
wicket/trunk/wicket/src/assembly/
wicket/trunk/wicket/src/assembly/sources.xml
wicket/trunk/wicket/src/assembly/test-sources.xml
wicket/trunk/wicket/src/assembly/tests.xml
Added: wicket/trunk/wicket/src/assembly/sources.xml
URL:
http://svn.apache.org/viewvc/wicket/trunk/wicket/src/assembly/sources.xml?rev=1160135&view=auto
==============================================================================
--- wicket/trunk/wicket/src/assembly/sources.xml (added)
+++ wicket/trunk/wicket/src/assembly/sources.xml Mon Aug 22 07:23:13 2011
@@ -0,0 +1,39 @@
+<?xml version="1.0"?>
+<!--
+ 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
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2
http://maven.apache.org/xsd/assembly-1.1.2.xsd">
+ <id>sources</id>
+ <formats>
+ <format>jar</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <dependencySets>
+ <dependencySet>
+ <outputDirectory>/</outputDirectory>
+ <includes>
+ <include>*:sources</include>
+ </includes>
+ <scope>provided</scope>
+ <unpack>true</unpack>
+ <useProjectArtifact>false</useProjectArtifact>
+ <useTransitiveDependencies>false</useTransitiveDependencies>
+ <useTransitiveFiltering>false</useTransitiveFiltering>
+ </dependencySet>
+ </dependencySets>
+</assembly>
+
Added: wicket/trunk/wicket/src/assembly/test-sources.xml
URL:
http://svn.apache.org/viewvc/wicket/trunk/wicket/src/assembly/test-sources.xml?rev=1160135&view=auto
==============================================================================
--- wicket/trunk/wicket/src/assembly/test-sources.xml (added)
+++ wicket/trunk/wicket/src/assembly/test-sources.xml Mon Aug 22 07:23:13 2011
@@ -0,0 +1,39 @@
+<?xml version="1.0"?>
+<!--
+ 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
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2
http://maven.apache.org/xsd/assembly-1.1.2.xsd">
+ <id>test-sources</id>
+ <formats>
+ <format>jar</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <dependencySets>
+ <dependencySet>
+ <outputDirectory>/</outputDirectory>
+ <includes>
+ <include>*:test-sources</include>
+ </includes>
+ <scope>provided</scope>
+ <unpack>true</unpack>
+ <useProjectArtifact>false</useProjectArtifact>
+ <useTransitiveDependencies>false</useTransitiveDependencies>
+ <useTransitiveFiltering>false</useTransitiveFiltering>
+ </dependencySet>
+ </dependencySets>
+</assembly>
+
Added: wicket/trunk/wicket/src/assembly/tests.xml
URL:
http://svn.apache.org/viewvc/wicket/trunk/wicket/src/assembly/tests.xml?rev=1160135&view=auto
==============================================================================
--- wicket/trunk/wicket/src/assembly/tests.xml (added)
+++ wicket/trunk/wicket/src/assembly/tests.xml Mon Aug 22 07:23:13 2011
@@ -0,0 +1,39 @@
+<?xml version="1.0"?>
+<!--
+ 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
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2
http://maven.apache.org/xsd/assembly-1.1.2.xsd">
+ <id>tests</id>
+ <formats>
+ <format>jar</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <dependencySets>
+ <dependencySet>
+ <outputDirectory>/</outputDirectory>
+ <includes>
+ <include>*:tests</include>
+ </includes>
+ <scope>provided</scope>
+ <unpack>true</unpack>
+ <useProjectArtifact>false</useProjectArtifact>
+ <useTransitiveDependencies>false</useTransitiveDependencies>
+ <useTransitiveFiltering>false</useTransitiveFiltering>
+ </dependencySet>
+ </dependencySets>
+</assembly>
+