Skip to content

Commit

Permalink
Fix codestart generation phase (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
ia3andy authored Feb 19, 2024
1 parent bec8284 commit c32d952
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/project.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
release:
current-version: "1.3.0"
next-version: "999-SNAPSHOT"

2 changes: 1 addition & 1 deletion .mvn/extensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<extension>
<groupId>io.mvnpm</groupId>
<artifactId>locker-maven-plugin</artifactId>
<version>0.0.6</version>
<version>1.0.0</version>
</extension>
</extensions>
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/includes/attributes.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:project-version: 1.3.0.CR3
:project-version: 1.3.0

:maven-version: 3.8.1+

Expand Down
1 change: 1 addition & 0 deletions docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<artifactId>quarkus-web-bundler-deployment</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>

<build>
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<name>Quarkus Web Bundler - Parent</name>
<modules>
<module>common-deployment</module>
<module>qute-components</module>
<module>runtime</module>
<module>deployment</module>
<module>qute-components</module>
<module>docs</module>
</modules>
<scm>
Expand Down Expand Up @@ -76,7 +76,7 @@
</property>
</activation>
<modules>
<module>integration-tests/.locker</module>
<module>integration-tests/locker</module>
<module>integration-tests</module>
</modules>
</profile>
Expand Down
2 changes: 1 addition & 1 deletion qute-components/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<name>Quarkus Web Bundler - Qute Components - Parent</name>
<packaging>pom</packaging>
<modules>
<module>deployment</module>
<module>runtime</module>
<module>deployment</module>
</modules>
</project>
2 changes: 1 addition & 1 deletion runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<executions>
<execution>
<id>generate-codestart-jar</id>
<phase>generate-resources</phase>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
Expand Down

0 comments on commit c32d952

Please sign in to comment.