| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- spotless:off --> |
| <!-- |
| ============LICENSE_START======================================================= |
| Copyright (C) 2024 Ericsson |
| Modifications Copyright (C) 2024 OpenInfra Foundation Europe |
| ================================================================================ |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| SPDX-License-Identifier: Apache-2.0 |
| ============LICENSE_END========================================================= |
| --> |
| <!-- spotless:on --> |
| <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.oran.smo</groupId> |
| <artifactId>topology-exposure-inventory</artifactId> |
| <version>0.1.0-SNAPSHOT</version> |
| </parent> |
| |
| |
| <groupId>org.oran.smo.teiv.pgsqlgenerator</groupId> |
| <artifactId>pgsql-schema-generator</artifactId> |
| <version>1.1.0</version> |
| <packaging>jar</packaging> |
| |
| <properties> |
| <maven.compiler.release>17</maven.compiler.release> |
| <maven.compiler.source>17</maven.compiler.source> |
| <maven.compiler.target>17</maven.compiler.target> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <version.lombok>1.18.26</version.lombok> |
| <version.spotless-plugin>2.30.0</version.spotless-plugin> |
| <!-- External Yang model destination location --> |
| <test.generate-defaults.import>${project.basedir}/src/test/resources/generate-defaults/import/</test.generate-defaults.import> |
| </properties> |
| |
| <dependencies> |
| |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter</artifactId> |
| </dependency> |
| |
| <!-- jaxb dependencies --> |
| <dependency> |
| <groupId>javax.xml.bind</groupId> |
| <artifactId>jaxb-api</artifactId> |
| <version>2.3.1</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.xml.bind</groupId> |
| <artifactId>jaxb-core</artifactId> |
| <version>2.3.0.1</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.xml.bind</groupId> |
| <artifactId>jaxb-impl</artifactId> |
| <version>2.3.1</version> |
| </dependency> |
| |
| <!--yang tool dependencies --> |
| <dependency> |
| <groupId>org.oran.smo.yangtools.parser</groupId> |
| <artifactId>yang-parser-jar</artifactId> |
| <version>${version.yang-parser-jar}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-lang3</artifactId> |
| <version>3.14.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.projectlombok</groupId> |
| <artifactId>lombok</artifactId> |
| <version>${version.lombok}</version> |
| <scope>provided</scope> |
| </dependency> |
| <!-- Test Dependencies --> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-test</artifactId> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>com.mycila</groupId> |
| <artifactId>license-maven-plugin</artifactId> |
| <version>${version.license-maven-plugin}</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>com.diffplug.spotless</groupId> |
| <artifactId>spotless-maven-plugin</artifactId> |
| <version>${version.spotless-plugin}</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <version>${version.antrun-maven-plugin}</version> |
| <executions> |
| <execution> |
| <id>download-external-yang-models-pgsql</id> |
| <phase>generate-test-sources</phase> |
| <configuration> |
| <target> |
| <mkdir dir="${test.generate-defaults.import}" /> |
| <get |
| src="${source.3gpp.Rel18_SA103}_3gpp-common-yang-types.yang" |
| dest="${test.generate-defaults.import}_3gpp-common-yang-types.yang" |
| skipexisting="true" /> |
| <get |
| src="${source.ietfcatalog}ietf-geo-location@2022-02-11.yang" |
| dest="${test.generate-defaults.import}ietf-geo-location.yang" |
| skipexisting="true" /> |
| </target> |
| </configuration> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.jacoco</groupId> |
| <artifactId>jacoco-maven-plugin</artifactId> |
| <version>${version.jacoco-maven.plugin}</version> |
| <configuration> |
| <append>true</append> |
| </configuration> |
| <executions> |
| <execution> |
| <id>jacoco-check</id> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| <phase>test</phase> |
| <configuration> |
| <rules> |
| <rule implementation="org.jacoco.maven.RuleConfiguration"> |
| <element>BUNDLE</element> |
| <limits> |
| <limit implementation="org.jacoco.report.check.Limit"> |
| <counter>INSTRUCTION</counter> |
| <value>COVEREDRATIO</value> |
| <minimum>${jacoco-maven-plugin.coveredratio.minimum}</minimum> |
| </limit> |
| </limits> |
| </rule> |
| </rules> |
| </configuration> |
| </execution> |
| <execution> |
| <id>prepare-unit-tests</id> |
| <goals> |
| <goal>prepare-agent</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>report</id> |
| <phase>verify</phase> |
| <goals> |
| <goal>report</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |