Browse Source

Improve 'name' tags in POMs

I tripped over not finding aspectjtools in my IntelliJ Maven view many
times, because it was listed as "AspectJ Compiler". So I renamed it to
"AspectJ Tools (Compiler)". Now it resembles more the artifact ID and
still retains the information that it is the artifact containing AJC.

For the 'lib' module I removed the 'name' tag again, because it is not
one of the main artifacts we publish. Now the POMs are more like Andy
might have intended them to be, using a human-readable 'name' only for
the main artifacts.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
tags/V1_9_7_M2
Alexander Kriegisch 3 years ago
parent
commit
3134e56991
2 changed files with 1 additions and 2 deletions
  1. 1
    1
      aspectjtools/pom.xml
  2. 0
    1
      lib/pom.xml

+ 1
- 1
aspectjtools/pom.xml View File

@@ -11,7 +11,7 @@
</parent>

<artifactId>aspectjtools</artifactId>
<name>AspectJ Compiler</name>
<name>AspectJ Tools (Compiler)</name>

<build>
<plugins>

+ 0
- 1
lib/pom.xml View File

@@ -12,7 +12,6 @@

<artifactId>lib</artifactId>

<name>AspectJ Test Libraries</name>
<description>
This module downloads + installs libraries used by many tests, especially those running as Ant jobs. You should not
build this module during every build because it is somewhat slow, downloading stuff from 3rd-party websites,

Loading…
Cancel
Save