Skip to content

Commit

Permalink
Changed the DockerHub URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
thospfuller committed Apr 18, 2020
1 parent e30b896 commit da34b26
Show file tree
Hide file tree
Showing 2 changed files with 167 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DOCKER_EXAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Below we include two examples for working with images in Docker along with a dem

## Using The RCOBOLDI RStudio Image On DockerHub

[The RCOBOLDI Rocker/RStudio image is available on DockerHub here.](https://hub.docker.com/repository/docker/thospfuller/rcoboldi-rocker-rstudio/general)
[The RCOBOLDI Rocker/RStudio image is available on DockerHub here.](https://hub.docker.com/r/thospfuller/rcoboldi-rocker-rstudio)

The following is a fully working example.

Expand Down
166 changes: 166 additions & 0 deletions java/rcoboldi-assembly/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@
<?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">
<parent>
<artifactId>rcobol</artifactId>
<groupId>com.coherentlogic.rproject.integration</groupId>
<version>1.0.2-RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.coherentlogic.rproject.integration.rcobol</groupId>
<artifactId>rcoboldi-assembly</artifactId>
<name>RCOBOL Assembly Module</name>
<url>https://coherentlogic.com/middleware-development/rcobol/</url>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<filters>
<filter>
<artifact>com.coherentlogic.rproject.integration.rcobol:rcoboldi-core</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>com.google.code.gson:gson</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>net.sf:jrecord</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>net.sf:cb2csv</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>net.sf:cb2xml</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>com.coherentlogic.enterprise-data-adapter:data-adapter-core</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>org.slf4j:slf4j-api</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>org.apache.logging.log4j:log4j-slf4j-impl</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>org.apache.logging.log4j:log4j-core</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>org.apache.logging.log4j:log4j-api</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>com.jamonapi:jamon</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>com.coherentlogic.rproject.integration.jdataframe:jdataframe-core</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>org.springframework:spring-core</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer>
<mainClass>com.coherentlogic.rproject.integration.rcoboldi.api.Main</mainClass>
</transformer>
<transformer>
<resource>META-INF/spring.handlers</resource>
</transformer>
<transformer>
<resource>META-INF/spring.schemas</resource>
</transformer>
<transformer>
<resource>META-INF/spring.tooling</resource>
</transformer>
</transformers>
<relocations />
<artifactSet>
<excludes>
<exclude>junit:junit</exclude>
<exclude>org.mockito:mockito-all</exclude>
</excludes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>

0 comments on commit da34b26

Please sign in to comment.