Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 3 | |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 6 | <artifactId>security-utils</artifactId> |
| 7 | |
| 8 | <parent> |
| 9 | <groupId>org.openecomp.sdc</groupId> |
| 10 | <artifactId>sdc-main</artifactId> |
Michael Lando | d8a0dea | 2018-06-02 19:23:27 +0300 | [diff] [blame] | 11 | <version>1.3.0-SNAPSHOT</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 12 | </parent> |
| 13 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 14 | <dependencies> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 15 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 16 | <dependency> |
| 17 | <groupId>junit</groupId> |
| 18 | <artifactId>junit</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 19 | <version>${junit.version}</version> |
| 20 | <scope>test</scope> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 21 | </dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 22 | |
| 23 | <!-- slf4j + logback --> |
| 24 | <dependency> |
| 25 | <groupId>org.slf4j</groupId> |
| 26 | <artifactId>slf4j-api</artifactId> |
| 27 | <version>${slf4j-api.version}</version> |
| 28 | <scope>compile</scope> |
| 29 | </dependency> |
| 30 | <!-- functional java --> |
| 31 | <dependency> |
| 32 | <groupId>org.functionaljava</groupId> |
| 33 | <artifactId>functionaljava</artifactId> |
| 34 | <version>${functionaljava.version}</version> |
| 35 | <scope>compile</scope> |
| 36 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 37 | </dependencies> |
| 38 | |
Michael Lando | 06681f9 | 2018-05-21 09:41:03 +0300 | [diff] [blame] | 39 | <build> |
| 40 | <plugins> |
| 41 | <plugin> |
| 42 | <groupId>org.apache.maven.plugins</groupId> |
| 43 | <artifactId>maven-assembly-plugin</artifactId> |
| 44 | <executions> |
| 45 | <execution> |
| 46 | <id>create.jar.with.dependencies</id> |
| 47 | <phase>package</phase> |
| 48 | <goals> |
| 49 | <goal>single</goal> |
| 50 | </goals> |
| 51 | <configuration> |
| 52 | <archive> |
| 53 | <manifest> |
| 54 | <mainClass>org.openecomp.sdc.security.Passwords</mainClass> |
| 55 | </manifest> |
| 56 | </archive> |
| 57 | <descriptorRefs> |
| 58 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 59 | </descriptorRefs> |
| 60 | </configuration> |
| 61 | </execution> |
| 62 | </executions> |
| 63 | </plugin> |
| 64 | </plugins> |
| 65 | </build> |
| 66 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 67 | </project> |