Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,17 @@ under the License.
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>${wagon.automatic.module.name}</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions wagon-provider-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ under the License.
<name>Apache Maven Wagon :: API</name>
<description>Maven Wagon API that defines the contract between different Wagon implementations</description>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.provider.api</wagon.automatic.module.name>
</properties>

<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
4 changes: 4 additions & 0 deletions wagon-provider-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ under the License.
<name>Apache Maven Wagon :: Provider Test</name>
<description>Suite of tests for Wagon implementations</description>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.provider.test</wagon.automatic.module.name>
</properties>

<dependencies>
<!-- WagonTestCase and CommandExecutorTestCase are published here and use @PlexusTest,
so this is compile scope rather than test scope -->
Expand Down
4 changes: 4 additions & 0 deletions wagon-providers/wagon-file/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ under the License.
<name>Apache Maven Wagon :: Providers :: File Provider</name>
<description>Wagon provider that gets and puts artifacts using file system protocol</description>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.providers.file</wagon.automatic.module.name>
</properties>

<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
Expand Down
4 changes: 4 additions & 0 deletions wagon-providers/wagon-ftp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ under the License.
<name>Apache Maven Wagon :: Providers :: FTP Provider</name>
<description>Wagon provider that gets and puts artifacts from and to remote server using FTP protocol</description>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.providers.ftp</wagon.automatic.module.name>
</properties>

<dependencies>
<dependency>
<groupId>commons-net</groupId>
Expand Down
4 changes: 4 additions & 0 deletions wagon-providers/wagon-http-lightweight/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ under the License.
<name>Apache Maven Wagon :: Providers :: Lightweight HTTP Provider</name>
<description>Wagon provider that gets and puts artifacts through http using standard Java library</description>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.providers.http.lightweight</wagon.automatic.module.name>
</properties>

<dependencies>
<!-- TckTest aggregates the TCK suites, now through the JUnit Platform -->
<dependency>
Expand Down
4 changes: 4 additions & 0 deletions wagon-providers/wagon-http-shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ under the License.
<name>Apache Maven Wagon :: Providers :: HTTP Shared Library</name>
<description>Shared Library for wagon providers supporting HTTP.</description>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.providers.http.shared</wagon.automatic.module.name>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
Expand Down
4 changes: 4 additions & 0 deletions wagon-providers/wagon-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ under the License.
<name>Apache Maven Wagon :: Providers :: HTTP Provider</name>
<description>Wagon provider that gets and puts artifacts through HTTP(S) using Apache HttpClient-4.x.</description>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.providers.http</wagon.automatic.module.name>
</properties>

<dependencies>
<!-- TckTest aggregates the TCK suites, now through the JUnit Platform -->
<dependency>
Expand Down
1 change: 1 addition & 0 deletions wagon-providers/wagon-scm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ under the License.
<description>Wagon provider that gets and puts artifacts using a Source Control Management system</description>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.providers.scm</wagon.automatic.module.name>
<mavenScmVersion>2.2.1</mavenScmVersion>
</properties>

Expand Down
1 change: 1 addition & 0 deletions wagon-providers/wagon-ssh-common-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ under the License.
<name>Apache Maven Wagon :: Providers :: SSH Common Tests</name>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.providers.ssh.common.test</wagon.automatic.module.name>
<sshdVersion>2.19.0</sshdVersion>
</properties>
<dependencies>
Expand Down
4 changes: 4 additions & 0 deletions wagon-providers/wagon-ssh-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ under the License.
<artifactId>wagon-ssh-common</artifactId>
<name>Apache Maven Wagon :: Providers :: SSH Common Library</name>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.providers.ssh.common</wagon.automatic.module.name>
</properties>

<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
Expand Down
1 change: 1 addition & 0 deletions wagon-providers/wagon-ssh-external/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ under the License.
<description>Wagon provider that gets and puts artifacts using SSH protocol with a preinstalled SSH client</description>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.providers.ssh.external</wagon.automatic.module.name>
<sshd.stopImmediatly>false</sshd.stopImmediatly>
</properties>

Expand Down
1 change: 1 addition & 0 deletions wagon-providers/wagon-ssh/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ under the License.
<name>Apache Maven Wagon :: Providers :: SSH Provider</name>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.providers.ssh</wagon.automatic.module.name>
<sshd.stopImmediatly>false</sshd.stopImmediatly>
</properties>

Expand Down
4 changes: 4 additions & 0 deletions wagon-providers/wagon-webdav-jackrabbit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ under the License.
</contributor>
</contributors>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.providers.webdav</wagon.automatic.module.name>
</properties>

<dependencies>
<dependency>
<!-- Workaround for QDOX-148, see also MNG-3686 -->
Expand Down
4 changes: 4 additions & 0 deletions wagon-tcks/wagon-tck-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ under the License.

<name>Apache Maven Wagon :: HTTP Test Compatibility Kit</name>

<properties>
<wagon.automatic.module.name>org.apache.maven.wagon.tck.http</wagon.automatic.module.name>
</properties>

<dependencies>
<dependency>
<groupId>org.eclipse.sisu</groupId>
Expand Down
Loading