Skip to content

Commit

Permalink
Merge pull request #660 from guwirth/release/0.9.4
Browse files Browse the repository at this point in the history
prepare 0.9.4 release
  • Loading branch information
guwirth committed Oct 24, 2015
2 parents 94adcd5 + f2fee6c commit 87924c9
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 8 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ cache:
- C:\maven\
- C:\Users\appveyor\.m2
artifacts:
- path: 'sonar-cxx-plugin\target\sonar-cxx-plugin-0.9.4-SNAPSHOT.jar'
- path: 'sslr-cxx-toolkit\target\sslr-cxx-toolkit-0.9.4-SNAPSHOT.jar'
- path: 'sonar-cxx-plugin\target\sonar-cxx-plugin-0.9.4.jar'
- path: 'sslr-cxx-toolkit\target\sslr-cxx-toolkit-0.9.4.jar'
on_failure:
- ps: Get-ChildItem cxx-squid\target\surefire-reports\*.txt | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
- ps: Get-ChildItem cxx-checks\target\surefire-reports\*.txt | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
Expand Down
2 changes: 1 addition & 1 deletion cxx-checks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.codehaus.sonar-plugins.cxx</groupId>
<artifactId>cxx</artifactId>
<version>0.9.4-SNAPSHOT</version>
<version>0.9.4</version>
</parent>

<artifactId>cxx-checks</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cxx-squid/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.codehaus.sonar-plugins.cxx</groupId>
<artifactId>cxx</artifactId>
<version>0.9.4-SNAPSHOT</version>
<version>0.9.4</version>
</parent>

<artifactId>cxx-squid</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions integration-tests/features/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
BASEDIR = os.path.dirname(os.path.realpath(__file__))
JARPATTERN1 = os.path.join(BASEDIR, "../../sonar-cxx-plugin/target/*SNAPSHOT.jar")
JARPATTERN2 = os.path.join(BASEDIR, "../../sonar-cxx-plugin/target/*RC?.jar")
JARPATTERN3 = os.path.join(BASEDIR, "../../sonar-cxx-plugin/target/*-?.?.?.jar")
RELPATH_PLUGINS = "extensions/plugins"
didstartsonar = False

Expand Down Expand Up @@ -144,6 +145,9 @@ def jarpath():
jars = glob(JARPATTERN2)
if jars:
return os.path.normpath(jars[0])
jars = glob(JARPATTERN3)
if jars:
return os.path.normpath(jars[0])
return None


Expand Down
9 changes: 7 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>org.codehaus.sonar-plugins.cxx</groupId>
<artifactId>cxx</artifactId>
<version>0.9.4-SNAPSHOT</version>
<version>0.9.4</version>
<packaging>pom</packaging>

<name>Cxx</name>
Expand Down Expand Up @@ -97,7 +97,12 @@
<developer>
<id>Zetten</id>
<name>Peter van Zetten</name>
<email>[email protected]</email>
<email>[email protected]</email>
</developer>
<developer>
<id>cbagwell</id>
<name>Chris Bagwell</name>
<email>[email protected]</email>
</developer>
</developers>

Expand Down
2 changes: 1 addition & 1 deletion sonar-cxx-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.codehaus.sonar-plugins.cxx</groupId>
<artifactId>cxx</artifactId>
<version>0.9.4-SNAPSHOT</version>
<version>0.9.4</version>
</parent>

<artifactId>sonar-cxx-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion sslr-cxx-toolkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.codehaus.sonar-plugins.cxx</groupId>
<artifactId>cxx</artifactId>
<version>0.9.4-SNAPSHOT</version>
<version>0.9.4</version>
</parent>

<artifactId>sslr-cxx-toolkit</artifactId>
Expand Down

0 comments on commit 87924c9

Please sign in to comment.