Skip to content
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.

Commit

Permalink
Bug fix on installing 3rd party/No released libraries. Now they are m…
Browse files Browse the repository at this point in the history
…anaged with no-release-libs pom project
  • Loading branch information
santteegt committed Mar 27, 2015
1 parent 32ab56b commit c8b0952
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 43 deletions.
21 changes: 0 additions & 21 deletions generation/RDFGeneration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,27 +41,6 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>santteegt-db2triples</id>
<phase>clean</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>noreleased-libs/db2triples-1.0.3-SNAPSHOT.jar</file>
<groupId>net.antidot</groupId>
<artifactId>db2triples</artifactId>
<version>1.0.3-SNAPSHOT</version>
<packaging>jar</packaging>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
Expand Down
File renamed without changes.
55 changes: 55 additions & 0 deletions no-released-libs/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?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>
<groupId>com.ucuenca</groupId>
<artifactId>ucuenca</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>


<groupId>com.ucuenca</groupId>
<artifactId>no-released-libs</artifactId>
<packaging>pom</packaging>
<name>No Released Libraries</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>santteegt-freelib-marc4j</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>freelib-marc4j-2.6.4-SNAPSHOT.jar</file>
<groupId>info.freelibrary</groupId>
<artifactId>freelib-marc4j</artifactId>
<version>2.6.4-SNAPSHOT</version>
<packaging>jar</packaging>
</configuration>
</execution>
<execution>
<id>santteegt-db2triples</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>db2triples-1.0.3-SNAPSHOT.jar</file>
<groupId>net.antidot</groupId>
<artifactId>db2triples</artifactId>
<version>1.0.3-SNAPSHOT</version>
<packaging>jar</packaging>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<openrdf.sesame.version>2.6.10</openrdf.sesame.version>
</properties>
<modules>
<module>no-released-libs</module>
<module>tools</module>
<module>specification</module>
<module>modeling</module>
Expand Down
1 change: 0 additions & 1 deletion specification/marc21Loader/noreleased-libs/.gitignore

This file was deleted.

21 changes: 0 additions & 21 deletions specification/marc21Loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,27 +41,6 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>santteegt-freelib-marc4j</id>
<phase>clean</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>noreleased-libs/freelib-marc4j-2.6.4-SNAPSHOT.jar</file>
<groupId>info.freelibrary</groupId>
<artifactId>freelib-marc4j</artifactId>
<version>2.6.4-SNAPSHOT</version>
<packaging>jar</packaging>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
Expand Down

0 comments on commit c8b0952

Please sign in to comment.