Skip to content

Releases: acntech/easycontainers

Release 0.1.1

28 Jul 15:43

Choose a tag to compare

Release 0.1.1 Pre-release
Pre-release

Installation

To manually install the JAR file included in this release, use the following Maven command:

mvn install:install-file \
  -Dfile=<path-to-jar-file> \
  -DgroupId=no.acntech.easycontainers \
  -DartifactId=easycontainers \
  -Dversion=0.1.1 \
  -Dpackaging=jar \
  -DpomFile=<path-to-pom-file>

Ensure to replace the placeholders with the actual path to the downloaded JAR file and the release pom file.

Alternatively, run the following bash script to download and install the JAR file:

#!/bin/bash

# URLs for jar and pom files
JAR_URL=https://github.com/acntech/easycontainers/releases/download/v0.1.1/easycontainers-0.1.1.jar
POM_URL=https://github.com/acntech/easycontainers/releases/download/v0.1.1/pom.xml

# Create a temporary directory
TEMP_DIR=$(mktemp -d -t ci-XXXXXXXXXX)

# File paths
JAR_FILE_PATH=$TEMP_DIR/easycontainers-0.1.1.jar
POM_FILE_PATH=$TEMP_DIR/pom.xml

# Download jar and pom files
curl -L -o $JAR_FILE_PATH $JAR_URL
curl -L -o $POM_FILE_PATH $POM_URL

echo "Jar and POM files downloaded to $TEMP_DIR"

# Maven install command
mvn install:install-file \
-Dfile=$JAR_FILE_PATH \
-DgroupId=no.acntech.easycontainers \
-DartifactId=easycontainers \
-Dversion=0.1.1 \
-Dpackaging=jar \
-DpomFile=$POM_FILE_PATH

# Delete the temporary directory 
rm -r $TEMP_DIR

Gradle/Maven Dependency

For Gradle, add this to your build.gradle file's dependencies block:

implementation 'no.acntech.easycontainers:easycontainers:0.1.1'

For Maven, add this to your pom.xml file's dependencies block:

<dependency>
  <groupId>no.acntech.easycontainers</groupId>
  <artifactId>easycontainers</artifactId>
  <version>0.1.1</version>
</dependency>

Release 0.1.0

28 Jul 05:57

Choose a tag to compare

Release 0.1.0 Pre-release
Pre-release

Installation

To manually install the JAR file included in this release, use the following Maven command:

mvn install:install-file \
  -Dfile=<path-to-jar-file> \
  -DgroupId=no.acntech.easycontainers \
  -DartifactId=easycontainers \
  -Dversion=0.1.0 \
  -Dpackaging=jar \
  -DpomFile=<path-to-pom-file>

Ensure to replace the placeholders with the actual path to the downloaded JAR file and the release pom file.

Alternatively, run the following bash script to download and install the JAR file:

#!/bin/bash

# URLs for jar and pom files
JAR_URL=https://github.com/acntech/easycontainers/releases/download/v0.1.0/easycontainers-0.1.0.jar
POM_URL=https://github.com/acntech/easycontainers/releases/download/v0.1.0/pom.xml

# Create a temporary directory
TEMP_DIR=$(mktemp -d -t ci-XXXXXXXXXX)

# File paths
JAR_FILE_PATH=$TEMP_DIR/easycontainers-0.1.0.jar
POM_FILE_PATH=$TEMP_DIR/pom.xml

# Download jar and pom files
curl -L -o $JAR_FILE_PATH $JAR_URL
curl -L -o $POM_FILE_PATH $POM_URL

echo "Jar and POM files downloaded to $TEMP_DIR"

# Maven install command
mvn install:install-file \
-Dfile=$JAR_FILE_PATH \
-DgroupId=no.acntech.easycontainers \
-DartifactId=easycontainers \
-Dversion=0.1.0 \
-Dpackaging=jar \
-DpomFile=$POM_FILE_PATH

# Delete the temporary directory 
rm -r $TEMP_DIR

Gradle/Maven Dependency

For Gradle, add this to your build.gradle file's dependencies block:

implementation 'no.acntech.easycontainers:easycontainers:0.1.0'

For Maven, add this to your pom.xml file's dependencies block:

<dependency>
  <groupId>no.acntech.easycontainers</groupId>
  <artifactId>easycontainers</artifactId>
  <version>0.1.0</version>
</dependency>