Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
[FIXED JENKINS-27828] Use artifact ID as module name if pom defines n…
Browse files Browse the repository at this point in the history
…o name.
  • Loading branch information
uhafner committed Apr 14, 2015
1 parent 1ad0067 commit d21abc0
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 9 deletions.
9 changes: 0 additions & 9 deletions checkstyle.iml
Expand Up @@ -27,15 +27,6 @@
<orderEntry type="library" name="Maven: commons-beanutils:commons-beanutils-core:1.8.3" level="project" />
<orderEntry type="library" name="Maven: commons-cli:commons-cli:1.2" level="project" />
<orderEntry type="library" name="Maven: com.google.guava:guava-jdk5:14.0.1" level="project" />
<orderEntry type="module-library">
<library name="Maven: com.sun:tools:1.5.0">
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/com/sun/tools/1.5.0/tools-1.5.0.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
<orderEntry type="library" name="Maven: org.apache.commons:commons-digester3:3.2" level="project" />
<orderEntry type="library" name="Maven: cglib:cglib:2.2.2" level="project" />
<orderEntry type="library" name="Maven: asm:asm:3.3.1" level="project" />
Expand Down
8 changes: 8 additions & 0 deletions createCommitCvs.pl
@@ -0,0 +1,8 @@
#!/usr/bin/perl

# 338: commit 2d78b8c4d136f3d524ece5d11fd484031c6b454f

while (<>) {
/\s*(\d+): commit\s+([0-9a-f]*)/;
print "$1,$2\n";
}
24 changes: 24 additions & 0 deletions createCvs.pl
@@ -0,0 +1,24 @@
#!/usr/bin/perl

# ./92/build.xml: <numberOfNewWarnings>0</numberOfNewWarnings>

$line = 0;
while (<>) {
if ($line == 0) {
/.*\/(\d+)\/.*>(\d+)</;
$build = $1;
$all = $2;
$line++;
}
elsif ($line == 1) {
/.*\/\d+\/.*>(\d+)</;
$new = $1;
$line++;
}
elsif ($line == 2) {
/.*\/\d+\/.*>(\d+)</;
$fixed = $1;
print "$build,$all,$new,$fixed\n";
$line = 0;
}
}

0 comments on commit d21abc0

Please sign in to comment.