|
@@ -6,6 +6,7 @@
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>R2RML Implementation</name>
|
|
<name>R2RML Implementation</name>
|
|
<build>
|
|
<build>
|
|
|
|
+ <finalName>r2rml</finalName>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<resources>
|
|
<resources>
|
|
<resource>
|
|
<resource>
|
|
@@ -38,6 +39,28 @@
|
|
</archive>
|
|
</archive>
|
|
</configuration>
|
|
</configuration>
|
|
</plugin>
|
|
</plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-shade-plugin</artifactId>
|
|
|
|
+ <version>2.4.3</version>
|
|
|
|
+ <executions>
|
|
|
|
+ <execution>
|
|
|
|
+ <phase>package</phase>
|
|
|
|
+ <goals>
|
|
|
|
+ <goal>shade</goal>
|
|
|
|
+ </goals>
|
|
|
|
+ <configuration>
|
|
|
|
+ <finalName>r2rml-fat</finalName>
|
|
|
|
+ <transformers>
|
|
|
|
+ <transformer
|
|
|
|
+ implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
|
|
+ <mainClass>r2rml.Main</mainClass>
|
|
|
|
+ </transformer>
|
|
|
|
+ </transformers>
|
|
|
|
+ </configuration>
|
|
|
|
+ </execution>
|
|
|
|
+ </executions>
|
|
|
|
+ </plugin>
|
|
</plugins>
|
|
</plugins>
|
|
</build>
|
|
</build>
|
|
<dependencies>
|
|
<dependencies>
|