Skip to content

Commit

Permalink
Merge branch 'release/1.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Brice Copy committed Jan 15, 2020
2 parents 31093e1 + 1c0548a commit 5cbae0c
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 5 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# chiby-ide
A Blockly-based Spring boot enabled IDE


# Chiby IDE
[![IDE Version](https://jitpack.io/v/chibyhq/chiby-ide.svg)](https://jitpack.io/#chibyhq/chiby-ide)
[![GitHub Actions Status](https://github.com/chibyhq/chiby-ide/workflows/Java%20CI/badge.svg)](https://github.com/chibyhq/chiby-ide/actions)
[![Java 11](https://img.shields.io/badge/Java-11-green "Java 11")](https://java.com)

A Blockly-based Spring Boot-enabled IDE
19 changes: 17 additions & 2 deletions modules/frontend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.github.chibyhq</groupId>
<artifactId>ide-frontend</artifactId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
<packaging>jar</packaging>

<name>Chiby IDE :: frontend</name>
Expand Down Expand Up @@ -284,7 +284,22 @@
</extension>
</extensions>
<plugins>
<plugin>
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.11.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.5</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
<processParent>true</processParent>
<processAllModules>true</processAllModules>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<dependencies>
Expand Down
22 changes: 21 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.github.chiby.ide</groupId>
<artifactId>reactor</artifactId>
<version>1</version>
<version>1.3</version>
<packaging>pom</packaging>

<name>Chiby IDE reactor project</name>
Expand All @@ -15,4 +15,24 @@
<module>modules/frontend</module>
</modules>

<build>
<plugins>
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.11.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.5</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
<processParent>true</processParent>
<processAllModules>true</processAllModules>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 5cbae0c

Please sign in to comment.