Skip to content
Snippets Groups Projects
pom.xml 5.54 KiB
Newer Older
  • Learn to ignore specific revisions
  • David Diederich's avatar
    David Diederich committed
    <?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">
    
    David Diederich's avatar
    David Diederich committed
        <modelVersion>4.0.0</modelVersion>
    
        <properties>
            <java.version>1.8</java.version>
            <maven.compiler.target>1.8</maven.compiler.target>
            <maven.compiler.source>1.8</maven.compiler.source>
            <docker.image.prefix>org.opengroup.osdu</docker.image.prefix>
            <powermock.version>2.0.6</powermock.version>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    
            <os-core-common.version>0.13.0-rc4</os-core-common.version>
    
            <snakeyaml.version>1.26</snakeyaml.version>
    
            <nimbus-jose-jwt.version>7.9</nimbus-jose-jwt.version>
    
    David Diederich's avatar
    David Diederich committed
        </properties>
    
    
        <licenses>
        	<license>
        		<name>Apache License, Version 2.0</name>
        		<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
        		<distribution>repo</distribution>
        	</license>
        </licenses>
    
    
    	<groupId>org.opengroup.osdu.crs-catalog-service</groupId>
    	<artifactId>crs-catalog-service</artifactId>
    
    	<version>0.13.0-SNAPSHOT</version>
    
    	<packaging>pom</packaging>
    	<name>crs-catalog-service</name>
    	<description>crs-catalog service</description>
    
    David Diederich's avatar
    David Diederich committed
    
    
        <modules>
            <module>crs-catalog-core</module>
            <module>provider/crs-catalog-azure/crs-catalog-aks</module>
            <module>provider/crs-catalog-gcp/crs-catalog-gke</module>
    
    Walter D's avatar
    Walter D committed
            <module>provider/crs-catalog-ibm/crs-catalog-ocp</module>
    
            <module>provider/crs-catalog-aws</module>
    
    David Diederich's avatar
    David Diederich committed
    
        <repositories>
            <repository>
    
                <id>${repo.releases.id}</id>
                <url>${repo.releases.url}</url>
    
    David Diederich's avatar
    David Diederich committed
            </repository>
        </repositories>
    
    
        <distributionManagement>
            <repository>
    
                <id>${publish.releases.id}</id>
                <url>${publish.releases.url}</url>
    
                <id>${publish.snapshots.id}</id>
                <url>${publish.snapshots.url}</url>
    
            </snapshotRepository>
        </distributionManagement>
    
    
        <profiles>
            <profile>
                <id>Default</id>
                <activation>
                    <property>
                        <name>!repo.releases.id</name>
                    </property>
                </activation>
                <properties>
                    <repo.releases.id>community-maven-repo</repo.releases.id>
                    <publish.snapshots.id>community-maven-via-job-token</publish.snapshots.id>
                    <publish.releases.id>community-maven-via-job-token</publish.releases.id>
                    <repo.releases.url>https://community.opengroup.org/api/v4/groups/17/-/packages/maven</repo.releases.url>
                    <publish.snapshots.url>https://community.opengroup.org/api/v4/projects/21/packages/maven</publish.snapshots.url>
                    <publish.releases.url>https://community.opengroup.org/api/v4/projects/21/packages/maven</publish.releases.url>
                </properties>
            </profile>
        </profiles>
    
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.yaml</groupId>
                    <artifactId>snakeyaml</artifactId>
                    <version>${snakeyaml.version}</version>
                </dependency>
                <dependency>
                    <groupId>org.opengroup.osdu</groupId>
                    <artifactId>os-core-common</artifactId>
                    <version>${os-core-common.version}</version>
                </dependency>
    
                <dependency>
    
                    <groupId>org.opengroup.osdu</groupId>
                    <artifactId>os-core-common</artifactId>
                    <version>${os-core-common.version}</version>
                    <type>pom</type>
                    <scope>import</scope>
    
                </dependency>
    
            </dependencies>
        </dependencyManagement>
    
    
        <build>
            <pluginManagement>
                <plugins>
                    <plugin>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-maven-plugin</artifactId>
                        <executions>
                            <execution>
                                <goals>
                                    <goal>repackage</goal>
                                </goals>
                            </execution>
    
                            <execution>
                                <id>build-info</id>
                                <goals>
                                    <goal>build-info</goal>
                                </goals>
                            </execution>
    
                        </executions>
                    </plugin>
                </plugins>
            </pluginManagement>
    
            <plugins>
                <plugin>
                    <groupId>pl.project13.maven</groupId>
                    <artifactId>git-commit-id-plugin</artifactId>
                    <version>4.0.5</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>revision</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <verbose>true</verbose>
                        <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
                        <generateGitPropertiesFile>true</generateGitPropertiesFile>
                        <generateGitPropertiesFilename>
                            ${project.build.outputDirectory}/git.properties
                        </generateGitPropertiesFilename>
                    </configuration>
                </plugin>
            </plugins>
    
    David Diederich's avatar
    David Diederich committed
    </project>