This repository has been archived by the owner on Nov 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Panos Louridas
authored and
Panos Louridas
committed
Jun 25, 2012
1 parent
1aed03a
commit 63014ec
Showing
24 changed files
with
5,317 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<assembly | ||
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> | ||
|
||
<id>jar-dependencies</id> | ||
<formats> | ||
<format>jar</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
|
||
<dependencySets> | ||
<dependencySet> | ||
<unpack>true</unpack> | ||
<includes> | ||
<include>org.tmatesoft.svnkit:svnkit</include> | ||
<include>org.antlr:antlr-runtime</include> | ||
<include>org.slf4j:slf4j-api</include> | ||
<include>org.slf4j:slf4j-jdk14</include> | ||
</includes> | ||
<scope>provided</scope> | ||
</dependencySet> | ||
<dependencySet> | ||
<useProjectArtifact>true</useProjectArtifact> | ||
<unpack>true</unpack> | ||
</dependencySet> | ||
</dependencySets> | ||
<fileSets> | ||
<fileSet> | ||
<includes> | ||
<include>**/*.class</include> | ||
</includes> | ||
<directory>target/test-classes</directory> | ||
<outputDirectory>/</outputDirectory> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
<!--<?xml version="1.0" encoding="UTF-8"?> --> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<artifactId>parsers</artifactId> | ||
<groupId>eu.sqooss</groupId> | ||
<version>0.95-SNAPSHOT</version> | ||
</parent> | ||
|
||
<groupId>eu.sqooss.parsers</groupId> | ||
<artifactId>java</artifactId> | ||
<name>Java Parser</name> | ||
<version>0.95-SNAPSHOT</version> | ||
|
||
<packaging>bundle</packaging> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<version>2.2.0</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<instructions> | ||
<Embed-Dependency> | ||
*;scope=compile|runtime;artifactId=!core|org.osgi.core|org.osgi.compendium|slf4j-*|exec-maven-plugin | ||
</Embed-Dependency> | ||
<Export-Package> | ||
eu.sqooss.parsers.java | ||
</Export-Package> | ||
<Import-Package> | ||
*;resolution:=optional | ||
</Import-Package> | ||
<Bundle-SymbolicName>eu.sqooss.parsers.java</Bundle-SymbolicName> | ||
<Bundle-Version>0.95-SNAPSHOT</Bundle-Version> | ||
<Bundle-Vendor>AUEB</Bundle-Vendor> | ||
<Bundle-Description>Alitheia Core parser for Java</Bundle-Description> | ||
</instructions> | ||
</configuration> | ||
</plugin> | ||
|
||
<!-- | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>2.3.1</version> | ||
<configuration> | ||
<archive> | ||
<manifest> | ||
<addClasspath>true</addClasspath> | ||
<classpathPrefix>lib/</classpathPrefix> | ||
<mainClass>eu.sqooss.parsers.java.util.SVNRepoReader</mainClass> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>jar</goal> | ||
<goal>test-jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin>--> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>2.2.1</version> | ||
<configuration> | ||
<descriptors> | ||
<descriptor>assembly.xml</descriptor> | ||
</descriptors> | ||
<archive> | ||
<manifest> | ||
<mainClass>eu.sqooss.parsers.java.util.SVNRepoReader</mainClass> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>make-assembly</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>exec-maven-plugin</artifactId> | ||
<version>1.2</version> | ||
<configuration> | ||
<classpathScope>test</classpathScope> | ||
</configuration> | ||
</plugin> | ||
|
||
</plugins> | ||
|
||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
</resource> | ||
</resources> | ||
<testResources> | ||
<testResource> | ||
<directory>src/test/resources</directory> | ||
</testResource> | ||
</testResources> | ||
|
||
</build> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.tmatesoft.svnkit</groupId> | ||
<artifactId>svnkit</artifactId> | ||
<version>1.3.5</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.testng</groupId> | ||
<artifactId>testng</artifactId> | ||
<version>6.0.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>1.6.1</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-jdk14</artifactId> | ||
<version>1.6.1</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
Oops, something went wrong.