Skip to content

Commit

Permalink
feat: improve build
Browse files Browse the repository at this point in the history
  • Loading branch information
Angular2Guy committed Oct 17, 2023
1 parent 0887113 commit 016a9b3
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
28 changes: 24 additions & 4 deletions backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,6 @@ http://www.apache.org/licenses/LICENSE-2.0

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down Expand Up @@ -209,6 +205,14 @@ http://www.apache.org/licenses/LICENSE-2.0
<artifactId>h2</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>docker</id>
Expand All @@ -230,6 +234,22 @@ http://www.apache.org/licenses/LICENSE-2.0
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<id>process-aot</id>
<goals>
<goal>process-aot</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
1 change: 0 additions & 1 deletion frontend/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21">
<attributes>
<attribute name="module" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
Expand Down

0 comments on commit 016a9b3

Please sign in to comment.