aboutsummaryrefslogtreecommitdiffstats
path: root/data-migrator/pom.xml
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2022-02-03 11:20:27 -0500
committerDan Timoney <dtimoney@att.com>2022-02-03 12:39:59 -0500
commitbd8a1b2e87cbe7506c8e11f71bb23a4efb2573a4 (patch)
tree29fc3785dd61e880a580bf4b64585cc7c7b87ded /data-migrator/pom.xml
parent0c625e439eff8f5a4c387123e7fbf9b0e519c28e (diff)
Remove unused data-migrator code
Remove data-migrator code, which is no longer being actively used or supported, and which contains log4j vulnerability. Issue-ID: SDNC-1591 Signed-off-by: Dan Timoney <dtimoney@att.com> Change-Id: Id022338b0ab8643efa751296c94760387dc384e7 Former-commit-id: 12610aceefebd725b009839721a498ba9e6ba89d
Diffstat (limited to 'data-migrator/pom.xml')
-rw-r--r--data-migrator/pom.xml125
1 files changed, 0 insertions, 125 deletions
diff --git a/data-migrator/pom.xml b/data-migrator/pom.xml
deleted file mode 100644
index 88fb679f..00000000
--- a/data-migrator/pom.xml
+++ /dev/null
@@ -1,125 +0,0 @@
-<?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/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.onap.sdnc.oam</groupId>
- <artifactId>sdnc-oam</artifactId>
- <version>2.2.6-SNAPSHOT</version>
- </parent>
-
- <artifactId>data-migrator</artifactId>
- <packaging>jar</packaging>
-
- <name>sdnc-oam :: data-migrator</name>
- <description>MDSAL Data Migrator</description>
-
- <properties>
- <skip.SWM>true</skip.SWM>
- <java.version>11</java.version>
- <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
- <build.number>${maven.build.timestamp}</build.number>
- <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION>
- </properties>
-
- <dependencies>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${junit.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- </dependency>
- <dependency>
- <groupId>org.reflections</groupId>
- <artifactId>reflections</artifactId>
- <version>0.9.9-RC1</version>
- </dependency>
- <dependency>
- <groupId>com.beust</groupId>
- <artifactId>jcommander</artifactId>
- <version>1.48</version>
- </dependency>
- <dependency>
- <groupId>com.github.tomakehurst</groupId>
- <artifactId>wiremock-standalone</artifactId>
- <version>2.18.0</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.onap.ccsdk.sli.core</groupId>
- <artifactId>utils-provider</artifactId>
- <version>${ccsdk.sli.version}</version>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>${maven-compiler-plugin.version}</version>
- <configuration>
- <release>${java.version}</release>
- <!--explicitly remove source and target-->
- <source combine.self="override"/>
- <target combine.self="override"/>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifest>
- <addClasspath>true</addClasspath>
- <mainClass>org.onap.sdnc.oam.datamigrator.DataMigration</mainClass>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <executions>
- <execution>
- <id>create-zip</id>
- <goals>
- <goal>single</goal>
- </goals>
- <phase>package</phase>
- <configuration>
- <attach>true</attach>
- <finalName>${project.artifactId}.${project.version}</finalName>
- <attach>true</attach>
- <descriptors>
- <descriptor>src/assembly/assemble_zip.xml</descriptor>
- </descriptors>
- <appendAssemblyId>false</appendAssemblyId>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- </plugins>
- </build>
-</project>