Browse Source

Merge pull request #48 from kriegaex/deploy-main-artifacts-only

Only deploy main artifacts, default to no deployment for all others
tags/V1_9_7_M2
Andy Clement 3 years ago
parent
commit
1fc5195245
No account linked to committer's email address
7 changed files with 32 additions and 0 deletions
  1. 5
    0
      asm-renamed/pom.xml
  2. 5
    0
      aspectjmatcher/pom.xml
  3. 5
    0
      aspectjrt/pom.xml
  4. 5
    0
      aspectjtools/pom.xml
  5. 5
    0
      aspectjweaver/pom.xml
  6. 5
    0
      installer/pom.xml
  7. 2
    0
      pom.xml

+ 5
- 0
asm-renamed/pom.xml View File

@@ -41,6 +41,11 @@
the binaries. IDEA will just stop looking at the local Maven repository in this case.
</description>

<properties>
<!-- By default, do not deploy artifacts - but deploy this one used by the main build -->
<maven.deploy.skip>false</maven.deploy.skip>
</properties>

<distributionManagement>
<repository>
<id>github</id>

+ 5
- 0
aspectjmatcher/pom.xml View File

@@ -13,6 +13,11 @@
<artifactId>aspectjmatcher</artifactId>
<name>AspectJ Matcher</name>

<properties>
<!-- By default, do not deploy artifacts - but deploy this public one -->
<maven.deploy.skip>false</maven.deploy.skip>
</properties>

<build>
<plugins>


+ 5
- 0
aspectjrt/pom.xml View File

@@ -13,6 +13,11 @@
<artifactId>aspectjrt</artifactId>
<name>AspectJ Runtime</name>

<properties>
<!-- By default, do not deploy artifacts - but deploy this public one -->
<maven.deploy.skip>false</maven.deploy.skip>
</properties>

<dependencies>
<dependency>
<groupId>org.aspectj</groupId>

+ 5
- 0
aspectjtools/pom.xml View File

@@ -13,6 +13,11 @@
<artifactId>aspectjtools</artifactId>
<name>AspectJ Tools (Compiler)</name>

<properties>
<!-- By default, do not deploy artifacts - but deploy this public one -->
<maven.deploy.skip>false</maven.deploy.skip>
</properties>

<build>
<plugins>


+ 5
- 0
aspectjweaver/pom.xml View File

@@ -13,6 +13,11 @@
<artifactId>aspectjweaver</artifactId>
<name>AspectJ Weaver</name>

<properties>
<!-- By default, do not deploy artifacts - but deploy this public one -->
<maven.deploy.skip>false</maven.deploy.skip>
</properties>

<build>
<plugins>


+ 5
- 0
installer/pom.xml View File

@@ -13,6 +13,11 @@
<artifactId>installer</artifactId>
<name>AspectJ Installer</name>

<properties>
<!-- By default, do not deploy artifacts - but deploy this public one -->
<maven.deploy.skip>false</maven.deploy.skip>
</properties>

<dependencies>
<dependency>
<groupId>org.aspectj</groupId>

+ 2
- 0
pom.xml View File

@@ -14,6 +14,8 @@
<revision>1.9.7.BUILD-SNAPSHOT</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- By default, do not deploy artifacts - override for the ones which actually should be deployed -->
<maven.deploy.skip>true</maven.deploy.skip>
<jdt.core.version>3.25.0-SNAPSHOT</jdt.core.version>
<lib.ant.version>1.6.3</lib.ant.version>
<lib.ant.xerces.version>2.6.2</lib.ant.xerces.version>

Loading…
Cancel
Save