Skip to content

Commit 1d29412

Browse files
committed
work
1 parent 55420cb commit 1d29412

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

.idea/dataSources.local.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.springframework.boot</groupId>
1212
<artifactId>spring-boot-starter-parent</artifactId>
13-
<version>2.7.6</version>
13+
<version>2.7.7</version>
1414
</parent>
1515

1616
<scm>
@@ -1511,6 +1511,23 @@
15111511

15121512
<profiles>
15131513

1514+
<profile>
1515+
<id>run</id>
1516+
<activation>
1517+
<activeByDefault>true</activeByDefault>
1518+
</activation>
1519+
<properties>
1520+
<skip.unit.tests>true</skip.unit.tests>
1521+
<skip.integration.tests>true</skip.integration.tests>
1522+
</properties>
1523+
<build>
1524+
<finalName>${project.artifactId}</finalName>
1525+
<defaultGoal>
1526+
clean dependency:purge-local-repository dependency:resolve dependency:resolve-plugins dependency:sources install spring-boot:run
1527+
</defaultGoal>
1528+
</build>
1529+
</profile>
1530+
15141531
<profile>
15151532
<id>jar</id>
15161533
<properties>

0 commit comments

Comments
 (0)