Skip to content

Commit

Permalink
Better poms. Prepare to release version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanenicolas committed Jul 6, 2014
1 parent f0f6301 commit e893887
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/.settings
.settings
/.classpath
/.project
/target
6 changes: 6 additions & 0 deletions mimic-annotations/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,11 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
6 changes: 6 additions & 0 deletions mimic-annotations/.project
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>edu.umd.cs.findbugs.plugin.eclipse.findbugsBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
Expand All @@ -19,5 +24,6 @@
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>edu.umd.cs.findbugs.plugin.eclipse.findbugsNature</nature>
</natures>
</projectDescription>
10 changes: 8 additions & 2 deletions mimic-library/.project
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,17 @@
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<name>net.sf.eclipsecs.core.CheckstyleBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>net.sf.eclipsecs.core.CheckstyleBuilder</name>
<name>edu.umd.cs.findbugs.plugin.eclipse.findbugsBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
Expand All @@ -25,5 +30,6 @@
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>net.sf.eclipsecs.core.CheckstyleNature</nature>
<nature>edu.umd.cs.findbugs.plugin.eclipse.findbugsNature</nature>
</natures>
</projectDescription>
2 changes: 1 addition & 1 deletion mimic-library/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<findbugs-maven-plugin.version>2.5.3</findbugs-maven-plugin.version>
<jacoco-maven-plugin.version>0.7.1.201405082137</jacoco-maven-plugin.version>
<coveralls-maven-plugin.version>2.2.0</coveralls-maven-plugin.version>
<javassist-maven-plugin.version>1.1.0-SNAPSHOT</javassist-maven-plugin.version>
<javassist-maven-plugin.version>1.1.0</javassist-maven-plugin.version>

<!--LIBRARIES -->
<jsr305.version>2.0.3</jsr305.version>
Expand Down
10 changes: 5 additions & 5 deletions mimic-sample/.project
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<triggers>full,incremental,</triggers>
Expand All @@ -25,6 +20,11 @@
</dictionary>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
Expand Down
2 changes: 1 addition & 1 deletion mimic-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<eclipse-lifecycle-plugin.version>1.0.0</eclipse-lifecycle-plugin.version>
<jacoco-maven-plugin.version>0.7.1.201405082137</jacoco-maven-plugin.version>
<coveralls-maven-plugin.version>2.2.0</coveralls-maven-plugin.version>
<javassist-maven-plugin.version>1.1.0-SNAPSHOT</javassist-maven-plugin.version>
<javassist-maven-plugin.version>1.1.0</javassist-maven-plugin.version>
<maven-deploy-plugin.version>2.7</maven-deploy-plugin.version>

<!-- DEPENDENCIES -->
Expand Down
12 changes: 11 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
<findbugs-maven-plugin.version>2.5.3</findbugs-maven-plugin.version>
<maven-jar-plugin.version>2.4</maven-jar-plugin.version>
<maven-source-plugin.version>2.2</maven-source-plugin.version>
<maven-release-plugin.version>2.5</maven-release-plugin.version>
</properties>

<build>
Expand Down Expand Up @@ -178,7 +179,7 @@
javassist-maven-plugin
</artifactId>
<versionRange>
[1.1.0-SNAPSHOT,)
[${javassist-maven-plugin.version},)
</versionRange>
<goals>
<goal>javassist</goal>
Expand All @@ -205,6 +206,15 @@
</lifecycleMappingMetadata>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<goals>deploy</goals>
<autoversionsubmodules>true</autoversionsubmodules>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down

0 comments on commit e893887

Please sign in to comment.