diff options
author | vasraz <vasyl.razinkov@est.tech> | 2021-11-26 15:57:50 +0000 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2021-11-26 16:00:36 +0000 |
commit | e9171113772c0c7dc3f7514ffd0660d1e0f8ef02 (patch) | |
tree | 54fee46d19cb93a69bb1f1d7a858c1205e29dcb3 /openecomp-be/backend | |
parent | f2eb0c84057d745b8cc7e77a027dcd47122a7a5b (diff) |
Revert accidentally formatted POMs
Change-Id: I17ee875dcc2c63d6014c68345113df76cb2aa9b9
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Issue-ID: SDC-3757
Diffstat (limited to 'openecomp-be/backend')
-rw-r--r-- | openecomp-be/backend/openecomp-sdc-security-util/pom.xml | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/openecomp-be/backend/openecomp-sdc-security-util/pom.xml b/openecomp-be/backend/openecomp-sdc-security-util/pom.xml index 0ee74c03fe..39c663269e 100644 --- a/openecomp-be/backend/openecomp-sdc-security-util/pom.xml +++ b/openecomp-be/backend/openecomp-sdc-security-util/pom.xml @@ -1,71 +1,71 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xmlns="http://maven.apache.org/POM/4.0.0" +<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"> + <parent> + <artifactId>backend</artifactId> + <groupId>org.openecomp.sdc</groupId> + <version>1.10.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <artifactId>openecomp-sdc-security-util</artifactId> + + <dependencies> <dependency> - <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> <version>1.7.25</version> </dependency> <dependency> - <artifactId>commons-crypto</artifactId> <groupId>org.apache.commons</groupId> + <artifactId>commons-crypto</artifactId> <version>1.0.0</version> </dependency> <dependency> - <artifactId>commons-lang3</artifactId> <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> <version>${commons.lang3.version}</version> </dependency> <dependency> - <artifactId>functionaljava</artifactId> <groupId>org.functionaljava</groupId> + <artifactId>functionaljava</artifactId> <version>${functionaljava.version}</version> </dependency> <dependency> - <artifactId>jackson-core</artifactId> <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> <version>${jackson.version}</version> </dependency> <dependency> + <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> + <version>${jackson.version}</version> <exclusions> <exclusion> - <artifactId>jackson-core</artifactId> <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> </exclusion> </exclusions> - <groupId>com.fasterxml.jackson.core</groupId> - <version>${jackson.version}</version> </dependency> <dependency> - <artifactId>commons-codec</artifactId> <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> <version>${commons-codec}</version> </dependency> <dependency> - <artifactId>javax.servlet-api</artifactId> <groupId>javax.servlet</groupId> - <version>${servlet-api.version}</version> + <artifactId>javax.servlet-api</artifactId> + <version>${javax.servlet.version}</version> </dependency> </dependencies> - <modelVersion>4.0.0</modelVersion> - - - <parent> - <artifactId>backend</artifactId> - <groupId>org.openecomp.sdc</groupId> - <version>1.10.0-SNAPSHOT</version> - </parent> - </project> |