|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <parent> |
| 7 | + <groupId>io.adminshell.aas</groupId> |
| 8 | + <artifactId>dataformat-parent</artifactId> |
| 9 | + <version>${revision}</version> |
| 10 | + </parent> |
| 11 | + <artifactId>dataformat-core</artifactId> |
| 12 | + <dependencies> |
| 13 | + <dependency> |
| 14 | + <groupId>io.adminshell.aas</groupId> |
| 15 | + <artifactId>model</artifactId> |
| 16 | + <version>${model.version}</version> |
| 17 | + <scope>compile</scope> |
| 18 | + </dependency> |
| 19 | + <dependency> |
| 20 | + <groupId>javax.validation</groupId> |
| 21 | + <artifactId>validation-api</artifactId> |
| 22 | + <version>${javax-validation.version}</version> |
| 23 | + <scope>compile</scope> |
| 24 | + </dependency> |
| 25 | + <dependency> |
| 26 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 27 | + <artifactId>jackson-annotations</artifactId> |
| 28 | + <version>${jackson.version}</version> |
| 29 | + <scope>compile</scope> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 33 | + <artifactId>jackson-databind</artifactId> |
| 34 | + <version>${jackson.version}</version> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>org.slf4j</groupId> |
| 38 | + <artifactId>slf4j-api</artifactId> |
| 39 | + <version>${slf4j.version}</version> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>org.slf4j</groupId> |
| 43 | + <artifactId>slf4j-simple</artifactId> |
| 44 | + <version>${slf4j.version}</version> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>com.networknt</groupId> |
| 48 | + <artifactId>json-schema-validator</artifactId> |
| 49 | + <version>${json-schema-validator.version}</version> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>io.github.classgraph</groupId> |
| 53 | + <artifactId>classgraph</artifactId> |
| 54 | + <version>${classgraph.version}</version> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>org.hibernate.validator</groupId> |
| 58 | + <artifactId>hibernate-validator</artifactId> |
| 59 | + <version>${hibernate.version}</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>junit</groupId> |
| 63 | + <artifactId>junit</artifactId> |
| 64 | + <version>${junit.version}</version> |
| 65 | + <scope>test</scope> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>pl.pragmatists</groupId> |
| 69 | + <artifactId>JUnitParams</artifactId> |
| 70 | + <version>${junit-params.version}</version> |
| 71 | + <scope>test</scope> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>org.skyscreamer</groupId> |
| 75 | + <artifactId>jsonassert</artifactId> |
| 76 | + <version>${jsonassert.version}</version> |
| 77 | + <scope>test</scope> |
| 78 | + </dependency> |
| 79 | + </dependencies> |
| 80 | + <build> |
| 81 | + <plugins> |
| 82 | + <plugin> |
| 83 | + <groupId>org.apache.maven.plugins</groupId> |
| 84 | + <artifactId>maven-compiler-plugin</artifactId> |
| 85 | + <configuration> |
| 86 | + <source>11</source> |
| 87 | + <target>11</target> |
| 88 | + </configuration> |
| 89 | + </plugin> |
| 90 | + <plugin> |
| 91 | + <groupId>org.codehaus.mojo</groupId> |
| 92 | + <artifactId>flatten-maven-plugin</artifactId> |
| 93 | + <version>1.2.2</version> |
| 94 | + <configuration> |
| 95 | + <updatePomFile>true</updatePomFile> |
| 96 | + </configuration> |
| 97 | + <executions> |
| 98 | + <execution> |
| 99 | + <id>flatten</id> |
| 100 | + <phase>process-resources</phase> |
| 101 | + <goals> |
| 102 | + <goal>flatten</goal> |
| 103 | + </goals> |
| 104 | + </execution> |
| 105 | + <execution> |
| 106 | + <id>flatten.clean</id> |
| 107 | + <phase>clean</phase> |
| 108 | + <goals> |
| 109 | + <goal>clean</goal> |
| 110 | + </goals> |
| 111 | + </execution> |
| 112 | + </executions> |
| 113 | + </plugin> |
| 114 | + </plugins> |
| 115 | + </build> |
| 116 | + <repositories> |
| 117 | + <repository> |
| 118 | + <id>eis-public-repo</id> |
| 119 | + <name>maven-public</name> |
| 120 | + <url>https://maven.iais.fraunhofer.de/artifactory/eis-ids-public</url> |
| 121 | + </repository> |
| 122 | + </repositories> |
| 123 | +</project> |
0 commit comments