Skip to content

Commit

Permalink
Included META_INF, themes/css and plugin.xml in the JAR
Browse files Browse the repository at this point in the history
(forgot in the last commit)
  • Loading branch information
joninvski committed Mar 29, 2013
1 parent 1513562 commit d42d545
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 10 deletions.
18 changes: 17 additions & 1 deletion com.github.eclipsecolortheme.themes/.classpath
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<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="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
<attributes>
<attribute name="maven.pomderived" value="true"/>
Expand Down
10 changes: 4 additions & 6 deletions com.github.eclipsecolortheme.themes/build.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
plugin.xml,\
themes/
source.. = src/main/java,\
src/main/resources/
bin.includes = .
src.excludes = src/test/java/
18 changes: 15 additions & 3 deletions com.github.eclipsecolortheme.themes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.eclipsecolortheme.themes</groupId>
<artifactId>com.github.eclipsecolortheme.themes</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0.201207121019.zip</version>
<build>
<defaultGoal>install</defaultGoal>
<defaultGoal>package</defaultGoal>

<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand All @@ -15,9 +16,20 @@
<target>1.5</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.eclipse.core</groupId>
Expand Down

0 comments on commit d42d545

Please sign in to comment.