Skip to content

Commit

Permalink
fix: change structure
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveScott99 committed Feb 9, 2024
1 parent fd4f290 commit d0a8e81
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 7 deletions.
62 changes: 55 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,21 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.daverj</groupId>
<artifactId>daverj-microservices</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath> <!-- lookup parent from repository -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<groupId>com.daverj</groupId>
<artifactId>discovery</artifactId>
<version>1.0-SNAPSHOT</version>
<name>discovery</name>
<description>Discovery's Service</description>
<version>1.1-a</version>
<name>astfx-discovery-service</name>
<description>Astroflix discovery's Service</description>

<properties>
<java.version>17</java.version>
<spring-cloud.version>2023.0.0</spring-cloud.version>
</properties>

<dependencies>
Expand All @@ -26,6 +27,53 @@
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>


</project>
Binary file added target/discovery-1.1-a.jar
Binary file not shown.
Binary file added target/discovery-1.1-a.jar.original
Binary file not shown.

0 comments on commit d0a8e81

Please sign in to comment.