Skip to content

Commit

Permalink
Replace webjars with mvnpm
Browse files Browse the repository at this point in the history
Signed-off-by: Phillip Kruger <[email protected]>
  • Loading branch information
phillip-kruger authored and jmartisk committed Sep 6, 2023
1 parent 06827f2 commit 3408694
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 15 deletions.
3 changes: 0 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ updates:
interval: daily
open-pull-requests-limit: 10
ignore:
- dependency-name: org.webjars.npm:graphiql
versions:
- 1.4.1
- dependency-name: io.smallrye.config:smallrye-config
versions:
- 2.2.0
Expand Down
24 changes: 12 additions & 12 deletions ui/graphiql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependencies>
<!-- Here so that dependabot will tell us about an update -->
<dependency>
<groupId>org.webjars.npm</groupId>
<groupId>org.mvnpm</groupId>
<artifactId>graphiql</artifactId>
<version>${graphiql.version}</version>
<scope>provided</scope>
Expand All @@ -36,9 +36,9 @@
<!-- NOTE: The following dependencies can be uncommented to include
the GraphiQL plugin explorer in the project -->
<!-- <dependency>-->
<!-- <groupId>org.webjars.npm</groupId>-->
<!-- <artifactId>graphiql__plugin-explorer</artifactId>-->
<!-- <version>0.1.19</version>-->
<!-- <groupId>org.mvnpm.at.graphiql</groupId>-->
<!-- <artifactId>plugin-explorer</artifactId>-->
<!-- <version>0.3.4</version>-->
<!-- <scope>provided</scope>-->
<!-- <exclusions>-->
<!-- <exclusion>-->
Expand All @@ -48,7 +48,7 @@
<!-- </exclusions>-->
<!-- </dependency>-->
<dependency>
<groupId>org.webjars.npm</groupId>
<groupId>org.mvnpm</groupId>
<artifactId>react</artifactId>
<version>${react.version}</version>
<scope>provided</scope>
Expand All @@ -60,7 +60,7 @@
</exclusions>
</dependency>
<dependency>
<groupId>org.webjars.npm</groupId>
<groupId>org.mvnpm</groupId>
<artifactId>react-dom</artifactId>
<version>${react.version}</version>
<scope>provided</scope>
Expand Down Expand Up @@ -113,7 +113,7 @@
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.webjars.npm</groupId>
<groupId>org.mvnpm</groupId>
<artifactId>graphiql</artifactId>
<version>${graphiql.version}</version>
<type>jar</type>
Expand All @@ -125,7 +125,7 @@
</fileMappers>
</artifactItem>
<artifactItem>
<groupId>org.webjars.npm</groupId>
<groupId>org.mvnpm</groupId>
<artifactId>react</artifactId>
<version>${react.version}</version>
<type>jar</type>
Expand All @@ -137,7 +137,7 @@
</fileMappers>
</artifactItem>
<artifactItem>
<groupId>org.webjars.npm</groupId>
<groupId>org.mvnpm</groupId>
<artifactId>react-dom</artifactId>
<version>${react.version}</version>
<type>jar</type>
Expand All @@ -151,9 +151,9 @@
<!-- NOTE: The following dependencies can be uncommented to include
the GraphiQL plugin explorer in the project -->
<!-- <artifactItem>-->
<!-- <groupId>org.webjars.npm</groupId>-->
<!-- <artifactId>graphiql__plugin-explorer</artifactId>-->
<!-- <version>0.1.19</version>-->
<!-- <groupId>org.mvnpm.at.graphiql</groupId>-->
<!-- <artifactId>plugin-explorer</artifactId>-->
<!-- <version>0.3.4</version>-->
<!-- <type>jar</type>-->
<!-- <overWrite>true</overWrite>-->
<!-- <outputDirectory>${project.build.directory}/classes/META-INF/resources/${path.graphiql}/</outputDirectory>-->
Expand Down

0 comments on commit 3408694

Please sign in to comment.