Skip to content

Commit

Permalink
fix: configure repo to release plugins in download website
Browse files Browse the repository at this point in the history
  • Loading branch information
phiz71 committed Jun 19, 2024
1 parent 3bb596a commit 0c54f7c
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 66 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 2.1
setup: true

orbs:
gravitee: gravitee-io/[email protected].1
gravitee: gravitee-io/[email protected].2

# our single workflow, that triggers the setup job defined above, filters on tag and branches are needed otherwise
# some workflow and job will not be triggered for tags (default CircleCI behavior)
Expand All @@ -13,7 +13,7 @@ workflows:
when:
not: << pipeline.git.tag >>
jobs:
- gravitee/setup_lib-build-config:
- gravitee/setup_plugin-build-config:
filters:
tags:
ignore:
Expand All @@ -25,7 +25,7 @@ workflows:
pattern: "/^[0-9]+\\.[0-9]+\\.[0-9]+(-(alpha|beta|rc)\\.[0-9]+)?$/"
value: << pipeline.git.tag >>
jobs:
- gravitee/setup_lib-release-config:
- gravitee/setup_plugin-release-config:
filters:
branches:
ignore:
Expand Down
15 changes: 0 additions & 15 deletions gravitee-node-cache/gravitee-node-cache-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,4 @@
<version>${caffeine.version}</version>
</dependency>
</dependencies>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>

<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
<name>Gravitee.io - Node - Cache - Plugin - Hazelcast</name>
<description>Hazelcast Cache allows to use caches based on Hazelcast instance.</description>

<properties>
<!-- Property used by the publication job in CI-->
<publish-folder-path>plugins/node-cache</publish-folder-path>
</properties>

<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
<name>Gravitee.io - Node - Cache - Plugin - Standalone</name>
<description>Standalone Cache is the default plugin used for in-memory caching.</description>

<properties>
<!-- Property used by the publication job in CI-->
<publish-folder-path>plugins/node-cache</publish-folder-path>
</properties>

<dependencies>
<dependency>
<groupId>io.gravitee.node</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
<name>Gravitee.io - Node - Cluster - Plugin - Hazelcast</name>
<description>Hazelcast Cluster allows to define a cluster of Gravitee nodes based on Hazelcast instance.</description>

<properties>
<!-- Property used by the publication job in CI-->
<publish-folder-path>plugins/node-cluster</publish-folder-path>
</properties>

<dependencies>
<dependency>
<groupId>io.gravitee.node</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
<name>Gravitee.io - Node - Cluster - Plugin - Standalone</name>
<description>Standalone Cluster is the default plugin used when clustering is not required.</description>

<properties>
<!-- Property used by the publication job in CI-->
<publish-folder-path>plugins/node-cluster</publish-folder-path>
</properties>

<dependencies>
<dependency>
<groupId>io.gravitee.node</groupId>
Expand Down

0 comments on commit 0c54f7c

Please sign in to comment.