Skip to content

Commit

Permalink
prepare for release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vegegoku committed Jul 19, 2023
1 parent cf023b8 commit 51f35d8
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 61 deletions.
28 changes: 1 addition & 27 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<version>HEAD-SNAPSHOT</version>
<properties>
<snapshot.version>HEAD-SNAPSHOT</snapshot.version>
<next.release.version>1.0.0-RC6</next.release.version>
<next.release.version>1.0.0</next.release.version>
<release.version>${next.release.version}-${snapshot.version}</release.version>
<compiler-plugin.version>3.11.0</compiler-plugin.version>
<maven.compiler.release>17</maven.compiler.release>
Expand All @@ -20,7 +20,6 @@
<skipITs>true</skipITs>
<surefire-plugin.version>3.0.0</surefire-plugin.version>
<executable-suffix/>
<distribution.directory>${project.build.directory}/distributions</distribution.directory>
<install4j.home>/opt/install4j</install4j.home>
</properties>
<dependencyManagement>
Expand Down Expand Up @@ -91,31 +90,6 @@
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>DEBIAN/control</include>
<include>deb-package.sh</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<excludes>
<exclude>DEBIAN/control</exclude>
<exclude>deb-package.sh</exclude>
</excludes>
</resource>
</resources>
<extensions>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.7.1</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>${quarkus.platform.group-id}</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public void create(Project project) {
.add(new Folder("runConfigurations")
.add(new TemplatedFile("ALL_TESTS.xml", "/app/gwt/mvp/runConfigurations/ALL_TESTS.xml"))
.add(new TemplatedFile(project.getName() + ".xml", "/app/gwt/mvp/runConfigurations/app.xml"))
.add(new TemplatedFile(project.getName() + "-api.xml", "/app/gwt/mvp/runConfigurations/app-api.xml"))
.add(new TemplatedFile(project.getName() + "-api.xml", "/app/gwt/mvp/runConfigurations/backend-api.xml"))
.add(new TemplatedFile(project.getName() + "-dev.xml", "/app/gwt/mvp/runConfigurations/app-dev.xml"))
.add(new TemplatedFile("Development.xml", "/app/gwt/mvp/runConfigurations/Development.xml"))
.add(new TemplatedFile("process_sources.xml", "/app/gwt/mvp/runConfigurations/process_sources.xml"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public void create(Project project){
.add(new Folder("runConfigurations")
.add(new TemplatedFile("ALL_TESTS.xml", "/app/j2cl/mvp/runConfigurations/ALL_TESTS.xml"))
.add(new TemplatedFile(project.getName()+".xml", "/app/j2cl/mvp/runConfigurations/app.xml"))
.add(new TemplatedFile(project.getName()+"-api.xml", "/app/j2cl/mvp/runConfigurations/app-api.xml"))
.add(new TemplatedFile(project.getName()+"-api.xml", "/app/j2cl/mvp/runConfigurations/backend-api.xml"))
.add(new TemplatedFile(project.getName()+"-dev.xml", "/app/j2cl/mvp/runConfigurations/app-dev.xml"))
.add(new TemplatedFile("Development.xml", "/app/j2cl/mvp/runConfigurations/Development.xml"))
.add(new TemplatedFile("process_sources.xml", "/app/j2cl/mvp/runConfigurations/process_sources.xml"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<configuration default="false" name="Development" type="CompoundRunConfigurationType" factoryName="Compound Run Configuration">
<toRun type="Application" name="${name}-dev" />
<toRun type="MavenRunConfiguration" name="super-dev-mode" />
<toRun type="QuarkusRunConfigurationType" name="${name}-api" />
<toRun type="MavenRunConfiguration" name="backend-api" />
<method />
</configuration>
</component>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="backend-api" type="MavenRunConfiguration" factoryName="Maven">
<MavenSettings>
<option name="myGeneralSettings" />
<option name="myRunnerSettings" />
<option name="myRunnerParameters">
<MavenRunnerParameters>
<option name="profiles">
<set />
</option>
<option name="goals">
<list>
<option value="compile quarkus:dev" />
</list>
</option>
<option name="profilesMap">
<map />
</option>
<option name="resolveToWorkspace" value="false" />
<option name="workingDirPath" value="$PROJECT_DIR$/${name}-api" />
</MavenRunnerParameters>
</option>
</MavenSettings>
<method />
</configuration>
</component>

0 comments on commit 51f35d8

Please sign in to comment.