Skip to content

Commit

Permalink
#17 add pidservice for handle
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-conway committed Feb 14, 2017
1 parent 1c70889 commit 6860350
Show file tree
Hide file tree
Showing 6 changed files with 63 additions and 0 deletions.
62 changes: 62 additions & 0 deletions pidservice-handle/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>jargon-extensions</artifactId>
<groupId>org.irods.jargon</groupId>
<version>4.2.1.0-SNAPSHOT</version>
</parent>
<groupId>org.irods.jargon</groupId>
<artifactId>pidservice-handle</artifactId>
<name>pidservice-handle</name>
<description>Default reference implementation of Handle issue/resolve service</description>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>0</id>
<phase>validate</phase>
<configuration>
<tasks>
<delete file="${basedir}/src/test/resources/testing.properties" />
<touch file="${basedir}/src/test/resources/testing.properties"
mkdirs="true" />
<echo file="${basedir}/src/test/resources/testing.properties"
append="true">
test.confirm=${jargon.test.confirm}
test.data.directory=${jargon.test.data.directory}
test.irods.admin=${jargon.test.irods.admin}
test.irods.admin.password=${jargon.test.irods.admin.password}
test.irods.user=${jargon.test.irods.user}
test.irods.password=${jargon.test.irods.password}
test.irods.resource=${jargon.test.irods.resource}
test2.irods.user=${jargon.test.irods.user2}
test2.irods.password=${jargon.test.irods.password2}
test2.irods.resource=${jargon.test.irods.resource2}
test3.irods.user=${jargon.test.irods.user3}
test3.irods.password=${jargon.test.irods.password3}
test3.irods.resource=${jargon.test.irods.resource3}
test.irods.host=${jargon.test.irods.host}
test.irods.port=${jargon.test.irods.port}
test.irods.zone=${jargon.test.irods.zone}
test.resource.group=${jargon.test.resource.group}
test.irods.userDN=${jargon.test.irods.userDN}
test.irods.scratch.subdir=${jargon.test.irods.scratch.subdir}
test.mac.icommand.path=${jargon.test.mac.icommand.path}
test.option.exercise.remoteexecstream=${jargon.test.option.exercise.remoteexecstream}
</echo>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Empty file.
Empty file.
Empty file.
Empty file.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,6 @@
<module>virtual-collections</module>
<module>metadata-templates</module>
<module>file-template</module>
<module>pidservice-handle</module>
</modules>
</project>

0 comments on commit 6860350

Please sign in to comment.