Skip to content

Commit

Permalink
Disable Quarkus example because it does not work
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbasjes committed Jul 23, 2020
1 parent e913bc6 commit 57a17fc
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<module>java</module>
<module>kotlin</module>
<module>scala</module>
<module>quarkus</module>
<!-- <module>quarkus</module> FIXME: The quarkas example does not work because of a bug in either Spring or Quarkas. -->
</modules>

<build>
Expand Down
25 changes: 25 additions & 0 deletions examples/quarkus/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# IMPORTANT: THIS DOES NOT WORK!

See https://github.com/nielsbasjes/yauaa/issues/216 and the reproduction of the core problem https://github.com/nielsbasjes/BugReport-SpringQuarkus-ResourceLoading

The current status is that this problem has been reported to both Spring and Quarkus
- https://github.com/quarkusio/quarkus/issues/10943
- https://github.com/spring-projects/spring-framework/issues/25465


# IMPORTANT: THIS DOES NOT WORK!


# IMPORTANT: THIS DOES NOT WORK!












# quarkus project

This project uses Quarkus, the Supersonic Subatomic Java Framework.
Expand Down
33 changes: 33 additions & 0 deletions examples/quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,39 @@
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<executions>
<execution>
<id>fail-always</id>
<phase>validate</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[0.0.0]</version>
<message>
.


This project won't build because it does not work (so I deliberately disabled building it).
The base problem has been reported to both SpringFramework and Quarkus.
- https://github.com/quarkusio/quarkus/issues/10943
- https://github.com/spring-projects/spring-framework/issues/25465

.
</message>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>

</plugins>
</build>

Expand Down

0 comments on commit 57a17fc

Please sign in to comment.