Skip to content

Commit

Permalink
Initia release version
Browse files Browse the repository at this point in the history
  • Loading branch information
francis-pouatcha committed Nov 8, 2024
1 parent c526864 commit e882309
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target/*
57 changes: 44 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.3</version>
<relativePath/> <!-- lookup parent from repository -->
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>TaskManagementApplication</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>crud</name>
<groupId>com.adorsys.gis</groupId>
<artifactId>task-manger-auth</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<description>Demo project for Spring Boot</description>
<url/>
<licenses>
Expand All @@ -21,15 +23,44 @@
<developer/>
</developers>
<scm>
<connection/>
<developerConnection/>
<tag/>
<url/>
<connection>scm:git:https://github.com/ADORSYS-GIS/task-manger-auth.git</connection>
<developerConnection>scm:git:https://github.com/ADORSYS-GIS/task-manger-auth.git</developerConnection>
<url>https://github.com/ADORSYS-GIS/task-manger-auth</url>
<tag>HEAD</tag>
</scm>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/ADORSYS-GIS/task-manger-auth</url>
</repository>
</distributionManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<pushChanges>true</pushChanges>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/ADORSYS-GIS/task-manger-auth</url>
</repository>
</repositories>

<properties>
<java.version>17</java.version>
<sonar.organization>nkwatambe</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.organization>nkwatambe</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
</properties>
<dependencies>
<dependency>
Expand Down

0 comments on commit e882309

Please sign in to comment.