Skip to content

Commit

Permalink
Updated the various distros to use the new @angular/cli based UI.
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Wittmann <[email protected]>
  • Loading branch information
EricWittmann committed Feb 20, 2018
1 parent 31b58dd commit c4c6f1b
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 27 deletions.
2 changes: 1 addition & 1 deletion front-end/servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>apicurio-studio-fe-app</artifactId>
<artifactId>apicurio-studio-fe-studio</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
Expand Down
13 changes: 0 additions & 13 deletions front-end/studio/.editorconfig

This file was deleted.

5 changes: 3 additions & 2 deletions front-end/studio/.gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

deploy-prod.sh
serve.sh
/deploy-prod.sh
/serve.sh
/node

# compiled output
/dist
Expand Down
10 changes: 8 additions & 2 deletions front-end/studio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
<execution>
<id>ng build</id>
<goals>
<goal>npm</goal>
<goal>yarn</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>run-script build</arguments>
<arguments>build</arguments>
</configuration>
</execution>
</executions>
Expand All @@ -67,6 +67,12 @@
<resource>
<directory>${basedir}/dist</directory>
<filtering>false</filtering>
<excludes>
<exclude>config.js</exclude>
<exclude>keycloak.js</exclude>
<exclude>keycloak.json</exclude>
<exclude>version.js</exclude>
</excludes>
</resource>
</resources>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ <h1 class="about-title">Apicurio Studio</h1>
<td><strong>Built On</strong></td>
<td>{{ builtOn | date }}</td>
</tr>
<tr>
<td><strong>Edition</strong></td>
<td>CLI</td>
</tr>
<tr>
<td><strong>Project URL</strong></td>
<td><a href="{{ projectUrl }}" target="_blank">{{ projectUrl }} <span class="fa fa-external-link"></span></a></td>
Expand All @@ -54,4 +58,4 @@ <h1 class="about-title">Apicurio Studio</h1>
</div>
</div>
</div>
</div>
</div>
8 changes: 4 additions & 4 deletions platforms/swarm/ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<!-- Static Angular Files -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>apicurio-studio-fe-app</artifactId>
<artifactId>apicurio-studio-fe-studio</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
Expand Down Expand Up @@ -64,13 +64,13 @@
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>apicurio-studio-fe-app</artifactId>
<artifactId>apicurio-studio-fe-studio</artifactId>
<version>${project.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}/fe-app</outputDirectory>
<outputDirectory>${project.build.directory}/fe-studio</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
Expand All @@ -83,7 +83,7 @@
<configuration>
<webResources>
<resource>
<directory>target/fe-app</directory>
<directory>target/fe-studio</directory>
</resource>
<resource>
<directory>src/main/filtered-resources</directory>
Expand Down
8 changes: 4 additions & 4 deletions platforms/wildfly/ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>apicurio-studio-fe-app</artifactId>
<artifactId>apicurio-studio-fe-studio</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
Expand All @@ -48,13 +48,13 @@
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>apicurio-studio-fe-app</artifactId>
<artifactId>apicurio-studio-fe-studio</artifactId>
<version>${project.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}/fe-app</outputDirectory>
<outputDirectory>${project.build.directory}/fe-studio</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
Expand All @@ -67,7 +67,7 @@
<configuration>
<webResources>
<resource>
<directory>target/fe-app</directory>
<directory>target/fe-studio</directory>
</resource>
<resource>
<directory>src/main/filtered-resources</directory>
Expand Down

0 comments on commit c4c6f1b

Please sign in to comment.