Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
137 changes: 0 additions & 137 deletions .gitattributes

This file was deleted.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ More information can be found on: https://loinc.org/downloads/

To deploy origin artifact to a shared Nexus repository, run the following command, specifying the repository ID and URL in `-DaltDeploymentRepository`
```
mvn clean deploy -f loinc-origin -Ptinkarbuild -DaltDeploymentRepository=tinkar-snapshot::https://nexus.tinkar.org/repository/maven-snapshots/ -Dmaven.build.cache.enabled=false
mvn --projects loinc-origin --also-make clean deploy -Ptinkarbuild -DaltDeploymentRepository=tinkar-snapshot::https://nexus.tinkar.org/repository/maven-snapshots/ -Dmaven.build.cache.enabled=false
```

To install origin artifact to a local M2 repository, run the following command:
```
mvn clean install -f loinc-origin -Ptinkarbuild,generateDataLocal -Dmaven.build.cache.enabled=false
mvn --projects loinc-origin --also-make clean install -Ptinkarbuild,generateDataLocal -Dmaven.build.cache.enabled=false
```

**Run Transformation Pipeline**
Expand All @@ -54,6 +54,6 @@ The transformation pipeline can be built after origin data is available in Nexus

2. Deploy transformed data artifacts to Nexus, run the following command:
```
mvn deploy -f loinc-export -Ptinkarbuild -DaltDeploymentRepository=tinkar-snapshot::https://nexus.tinkar.org/repository/maven-snapshots/ -Dmaven.build.cache.enabled=false
mvn --projects loinc-export --also-make deploy -Ptinkarbuild -DaltDeploymentRepository=tinkar-snapshot::https://nexus.tinkar.org/repository/maven-snapshots/ -Dmaven.build.cache.enabled=false
```

39 changes: 0 additions & 39 deletions loinc-export/loinc-export-pom-template/loinc-export-pom.xml

This file was deleted.

2 changes: 1 addition & 1 deletion loinc-export/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<version>1.0.0-SNAPSHOT</version>
</parent>

<groupId>dev.ikm.data.loinc</groupId>
<groupId>dev.ikm.tinkar.data</groupId>
<artifactId>loinc</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
Expand Down
39 changes: 0 additions & 39 deletions loinc-origin/loinc-origin-pom-template/loinc-origin-pom.xml

This file was deleted.

24 changes: 0 additions & 24 deletions loinc-origin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,30 +128,6 @@
</execution>
</executions>
</plugin>
<!-- Attach Tinkar Origin Artifact to project -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>install</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>
${project.build.directory}/${project.artifactId}-${project.version}-data.zip
</file>
<type>zip</type>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down
Loading