Remove unneccessary dependency on lni-core and make a executable jar with all the dependencies.

git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2716 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Mark Diggory
2008-02-27 21:19:33 +00:00
parent b9fc33ec64
commit 2e4644afb5

View File

@@ -92,12 +92,31 @@
</profile> </profile>
</profiles> </profiles>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>LNISmokeTest</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<goals><goal>attached</goal></goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies> <dependencies>
<dependency>
<groupId>org.dspace</groupId>
<artifactId>dspace-lni-core</artifactId>
<scope>compile</scope>
</dependency>
<dependency> <dependency>
<groupId>javax.activation</groupId> <groupId>javax.activation</groupId>
<artifactId>activation</artifactId> <artifactId>activation</artifactId>