Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:tagbangers/wallride
Browse files Browse the repository at this point in the history
  • Loading branch information
ogawa-takeshi committed Feb 12, 2018
2 parents 0bc304d + d6027e8 commit 4d9232d
Show file tree
Hide file tree
Showing 451 changed files with 707 additions and 118,104 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
home/
target/
dist/
node_modules/
.node/
.settings/
.project
.classpath
.idea
*.iml
home/
npm-debug.log
13 changes: 10 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>1.5.7.RELEASE</version>
<version>1.5.10.RELEASE</version>
</parent>
<groupId>org.wallride</groupId>
<artifactId>wallride</artifactId>
<version>1.0.0.M17</version>
<version>1.0.0.M18</version>
<packaging>pom</packaging>
<name>WallRide</name>
<description>CMS for developers of principles</description>
Expand Down Expand Up @@ -80,7 +80,7 @@
<dependency>
<groupId>org.wallride</groupId>
<artifactId>wallride-core</artifactId>
<version>1.0.0.M17</version>
<version>1.0.0.M18</version>
</dependency>

<!-- Spring -->
Expand Down Expand Up @@ -198,6 +198,13 @@
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
27 changes: 14 additions & 13 deletions wallride-bootstrap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.wallride</groupId>
<artifactId>wallride-parent</artifactId>
<version>1.0.0.M17</version>
<version>1.0.0.M18</version>
<relativePath>../wallride-parent/pom.xml</relativePath>
</parent>
<artifactId>wallride-bootstrap</artifactId>
Expand All @@ -23,18 +23,6 @@
<start-class>org.wallride.bootstrap.Bootstrap</start-class>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<executable>true</executable>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand All @@ -57,6 +45,19 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<executable>true</executable>
<skip>false</skip>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>jar</id>
Expand Down
121 changes: 83 additions & 38 deletions wallride-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.wallride</groupId>
<artifactId>wallride</artifactId>
<version>1.0.0.M17</version>
<version>1.0.0.M18</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>wallride-core</artifactId>
Expand Down Expand Up @@ -171,43 +171,6 @@
<version>${thymeleaf-extras-java8time.version}</version>
</dependency>

<!-- WebJars -->
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery</artifactId>
<version>2.1.3</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery-ui</artifactId>
<version>1.11.2</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery-file-upload</artifactId>
<version>9.8.1</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>select2</artifactId>
<version>3.5.2</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>datetimepicker</artifactId>
<version>2.3.4</version>
</dependency>
<dependency>
<groupId>org.webjars.bower</groupId>
<artifactId>jsrender</artifactId>
<version>1.0.0-rc.70</version>
</dependency>

<!-- @Inject -->
<dependency>
<groupId>javax.inject</groupId>
Expand Down Expand Up @@ -316,4 +279,86 @@
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>../wallride-ui-admin/dist</directory>
</resource>
<resource>
<directory>../wallride-ui-guest/dist</directory>
</resource>
</resources>

<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.5</version>
<configuration>
<installDirectory>${basedir}/../.node</installDirectory>
</configuration>
<executions>
<execution>
<id>install-node-and-npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<nodeVersion>v6.11.0</nodeVersion>
<npmVersion>3.10.10</npmVersion>
</configuration>
</execution>
<execution>
<id>npm-install-admin</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<workingDirectory>../wallride-ui-admin</workingDirectory>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>npm-build-admin</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<workingDirectory>../wallride-ui-admin</workingDirectory>
<arguments>run build</arguments>
</configuration>
</execution>
<execution>
<id>npm-install-guest</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<workingDirectory>${basedir}/../wallride-ui-guest</workingDirectory>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>npm-build-guest</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<workingDirectory>${basedir}/../wallride-ui-guest</workingDirectory>
<arguments>run build</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class WallRideMessageSourceConfiguration extends MessageSourceAutoConfigu
@Override
public MessageSource messageSource() {
ResourceBundleMessageSource messageSource = (ResourceBundleMessageSource) super.messageSource();
messageSource.setBasenames(
messageSource.addBasenames(
"messages/messages",
"messages/validations",
"messages/enumerations",
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 4d9232d

Please sign in to comment.