Skip to content
Snippets Groups Projects
pom.xml 5.09 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>
    
    	<groupId>org.opengroup.osdu</groupId>
    	<artifactId>os-schema</artifactId>
    
    	<version>0.28.0-SNAPSHOT</version>
    
    	<packaging>pom</packaging>
    	<name>os-schema</name>
    	<description>os schema service </description>
    
    David Diederich's avatar
    David Diederich committed
    
    	<properties>
    
    		<java.version>17</java.version>
    		<maven.compiler.target>17</maven.compiler.target>
    		<maven.compiler.source>17</maven.compiler.source>
    
    David Diederich's avatar
    David Diederich committed
    		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    
    		<os-core-common.version>0.26.0-rc2</os-core-common.version>
    
    		<json-smart.version>2.5.0</json-smart.version>
    
    		<spring-boot-maven-plugin.version>3.2.2</spring-boot-maven-plugin.version>
    
    Isha Kumari's avatar
    Isha Kumari committed
    		<openapi.version>2.5.0</openapi.version>
    
    		<spring-framework-version>6.1.13</spring-framework-version>
    
    		<spring-security.version>6.3.4</spring-security.version>
    		<spring-boot.version>3.3.5</spring-boot.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>
    
    
    David Diederich's avatar
    David Diederich committed
    	<dependencyManagement>
    		<dependencies>
    
    			<dependency>
    				<groupId>net.minidev</groupId>
    				<artifactId>json-smart</artifactId>
    				<version>${json-smart.version}</version>
    			</dependency>
    
    			<dependency>
    				<groupId>org.springframework</groupId>
    				<artifactId>spring-framework-bom</artifactId>
    
    				<version>${spring-framework-version}</version>
    
    				<type>pom</type>
    
    			</dependency>
    			<dependency>
    				<groupId>org.springframework.boot</groupId>
    				<artifactId>spring-boot-dependencies</artifactId>
    
    				<version>${spring-boot.version}</version>
    
    				<type>pom</type>
    				<scope>import</scope>
    			</dependency>
    			<dependency>
    				<groupId>org.springframework.security</groupId>
    				<artifactId>spring-security-bom</artifactId>
    
    				<version>${spring-security.version}</version>
    
    				<type>pom</type>
    
    			</dependency>
    
    David Diederich's avatar
    David Diederich committed
    		</dependencies>
    	</dependencyManagement>
    
    
    shitij singh's avatar
    shitij singh committed
    	<dependencies>
    
    		
    		<dependency>
                 <groupId>org.opengroup.osdu</groupId>
                 <artifactId>os-core-common-spring6</artifactId>
                 <version>${os-core-common.version}</version>
                 <type>pom</type>
    
    Isha Kumari's avatar
    Isha Kumari committed
                 <scope>provided</scope>
    
    		<!--Swagger -->
    		<dependency>
    			<groupId>org.springdoc</groupId>
    
    			<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
    
    			<version>${openapi.version}</version>
    		</dependency>
    	</dependencies>
    
    David Diederich's avatar
    David Diederich committed
    
    	<modules>
    		<module>schema-core</module>
    
    		<module>schema-core-plus</module>
    
    		<module>provider/schema-aws</module>
    
    		<module>provider/schema-gc</module>
    
    		<module>provider/schema-ibm</module>
    
    		<module>provider/schema-azure</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>
    
    			<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/26/packages/maven</publish.snapshots.url>
    				<publish.releases.url>https://community.opengroup.org/api/v4/projects/26/packages/maven</publish.releases.url>
    			</properties>
    		</profile>
    	</profiles>
    
    
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-maven-plugin</artifactId>
                        <version>3.2.2</version>
                        <executions>
    
    					<execution>
    						<id>build-info</id>
    						<goals>
    							<goal>build-info</goal>
    						</goals>
    					</execution>
    				</executions>
    
    				<groupId>io.github.git-commit-id</groupId>
    				<artifactId>git-commit-id-maven-plugin</artifactId>
    				<version>8.0.2</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>
    	</build>
    
    
    David Diederich's avatar
    David Diederich committed
    </project>