Browse Source

Fix pom and .gitignore

tags/2.5-rc1
Simon Brandhof 11 years ago
parent
commit
4f48f78cd7
2 changed files with 33 additions and 35 deletions
  1. 27
    5
      .gitignore
  2. 6
    30
      pom.xml

+ 27
- 5
.gitignore View File

@@ -1,8 +1,30 @@

# ---- Maven
target/
dependency-reduced-pom.xml

# ---- IntellijIDEA
*.iws
*.iml
.DS_Store
*.ipr
.idea/

# Eclipse
.classpath
.project
.idea/
.settings/
target/
bin/
.settings

# ---- Mac OS X
.DS_Store
Icon?
# Thumbnails
._*
# Files that might appear on external disk
.Spotlight-V100
.Trashes

# ---- Windows
# Windows image file caches
Thumbs.db
# Folder config file
Desktop.ini

+ 6
- 30
pom.xml View File

@@ -11,6 +11,8 @@
<version>2.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Sonar Runner</name>
<url>http://docs.codehaus.org/display/SONAR/Analyzing+with+Sonar+Runner</url>
<inceptionYear>2011</inceptionYear>

<modules>
<module>sonar-runner-api</module>
@@ -18,12 +20,12 @@
<module>sonar-runner-dist</module>
</modules>

<url>http://docs.codehaus.org/display/SONAR/Sonar+Standalone+Runner</url>
<inceptionYear>2011</inceptionYear>

<organization>
<name>SonarSource</name>
<url>http://www.sonarsource.com</url>
</organization>

<licenses>
<license>
<name>GNU LGPL 3</name>
@@ -32,45 +34,19 @@
</license>
</licenses>

<developers>
<developer>
<id>godin</id>
<name>Evgeny Mandrikov</name>
<timezone>+3</timezone>
</developer>
<developer>
<id>simon.brandhof</id>
<name>Simon Brandhof</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>bellingard</id>
<name>Fabrice Bellingard</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>henryju</id>
<name>Julien Henry</name>
<timezone>+1</timezone>
</developer>
</developers>

<scm>
<connection>scm:git:git@github.com:SonarSource/sonar-runner.git</connection>
<developerConnection>scm:git:git@github.com:SonarSource/sonar-runner.git</developerConnection>
<url>https://github.com/SonarSource/sonar-runner</url>
<tag>HEAD</tag>
</scm>

<issueManagement>
<system>JIRA</system>
<url>http://jira.codehaus.org/browse/SONARPLUGINS/component/14640</url>
</issueManagement>
<ciManagement>
</ciManagement>

<properties>
<sonar.buildVersion>3.5-RC1</sonar.buildVersion>
<sonar.buildVersion>3.5-RC3</sonar.buildVersion>
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
</properties>

</project>

Loading…
Cancel
Save