The ATLAS Metadata Interface (AMI) is a generic high level framework for metadata cataloguing. It was originally developed for the A Toroidal LHC ApparatuS (ATLAS) experiment, one of the two general-purpose detectors at the Large Hadron Collider (LHC).
- Requirements
Make sure that Java 11 and Maven 3 are installed:
java -version
mvn -version- Installing Oracle JDBC driver 12c
Download Oracle JDBC driver 12c. Edit get_ojdbc.sh and set the proper JAR version:
JAR=ojdbc8.jar
JAR_VERSION=12.2.0.1
mvn install:install-file \
-DgeneratePom=true \
-DgroupId=com.oracle -DartifactId=ojdbc8 \
-Dpackaging=jar -Dfile=$JAR -Dversion=$JAR_VERSIONRun get_ojdbc.sh:
./get_ojdbc.sh- Compiling sources
mvn package