-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
483 changed files
with
20,118 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mvn archetype:generate -DarchetypeCatalog=https://repo.rasc.ch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<archetype-catalog> | ||
<archetypes> | ||
<archetype> | ||
<groupId>ch.rasc</groupId> | ||
<artifactId>springjpa-archetype</artifactId> | ||
<version>2.0.2</version> | ||
<repository>https://repo.rasc.ch</repository> | ||
<description>Spring 4, JPA2, Spring-Data-Jpa, QueryDSL, Hibernate 4</description> | ||
</archetype> | ||
|
||
<archetype> | ||
<groupId>ch.rasc</groupId> | ||
<artifactId>springmvc-archetype</artifactId> | ||
<version>2.0.2</version> | ||
<repository>https://repo.rasc.ch</repository> | ||
<description>Simple Webapp with Spring MVC 4 and Spring Security 3.2.x</description> | ||
</archetype> | ||
|
||
<archetype> | ||
<groupId>ch.rasc</groupId> | ||
<artifactId>webappsimple-archetype</artifactId> | ||
<version>2.0.2</version> | ||
<repository>https://repo.rasc.ch</repository> | ||
<description>Simple Webapplication with Servlet 3.0/JSP 2.2</description> | ||
</archetype> | ||
|
||
<archetype> | ||
<groupId>ch.rasc</groupId> | ||
<artifactId>webapp-archetype</artifactId> | ||
<version>2.0.2</version> | ||
<repository>https://repo.rasc.ch</repository> | ||
<description>Webapp with Spring 4, Spring Security 3.2.x, JPA2, Spring-Data-Jpa, QueryDSL, Hibernate 4</description> | ||
</archetype> | ||
|
||
<archetype> | ||
<groupId>ch.rasc</groupId> | ||
<artifactId>eds-starter-simple-archetype</artifactId> | ||
<version>2.0.2</version> | ||
<repository>https://repo.rasc.ch</repository> | ||
<description>Simple Webapp with Ext JS 5.x, ExtDirectSpring 1.4.x and Spring 4</description> | ||
</archetype> | ||
|
||
<archetype> | ||
<groupId>ch.rasc</groupId> | ||
<artifactId>eds-starter-archetype</artifactId> | ||
<version>2.0.2</version> | ||
<repository>https://repo.rasc.ch</repository> | ||
<description>Webapp with Ext JS 4.2.2, ExtDirectSpring 1.4.x, Spring 4, Spring Security, JPA2, Spring-Data-Jpa, QueryDSL, Hibernate 4</description> | ||
</archetype> | ||
|
||
</archetypes> | ||
</archetype-catalog> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
cd springjpa-app | ||
call mvn versions:display-dependency-updates | ||
call mvn -U versions:display-plugin-updates | ||
|
||
cd ../springmvc-app | ||
call mvn versions:display-dependency-updates | ||
call mvn -U versions:display-plugin-updates | ||
|
||
cd ../webapp-app | ||
call mvn versions:display-dependency-updates | ||
call mvn -U versions:display-plugin-updates | ||
|
||
cd ../webappsimple-app | ||
call mvn versions:display-dependency-updates | ||
call mvn -U versions:display-plugin-updates |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
cd springjpa-app | ||
call mvn clean | ||
cd ../springmvc-app | ||
call mvn clean | ||
cd ../webapp-app | ||
call mvn clean | ||
cd ../webappsimple-app | ||
call mvn clean | ||
|
||
cd ../springjpa-archetype | ||
call mvn clean | ||
cd ../springmvc-archetype | ||
call mvn clean | ||
cd ../webapp-archetype | ||
call mvn clean | ||
cd ../webappsimple-archetype | ||
call mvn clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
cd springjpa-app | ||
call mvn clean archetype:create-from-project | ||
cd ../springmvc-app | ||
call mvn clean archetype:create-from-project | ||
cd ../webapp-app | ||
call mvn clean archetype:create-from-project | ||
cd ../webappsimple-app | ||
call mvn clean archetype:create-from-project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<prerequisites> | ||
<maven>2.2.1</maven> | ||
</prerequisites> | ||
|
||
<groupId>ch.rasc</groupId> | ||
<artifactId>eds-starter-archetype</artifactId> | ||
<version>2.0.2</version> | ||
<packaging>maven-archetype</packaging> | ||
|
||
<name>eds-starter-archetype</name> | ||
|
||
<build> | ||
<extensions> | ||
<extension> | ||
<groupId>org.apache.maven.archetype</groupId> | ||
<artifactId>archetype-packaging</artifactId> | ||
<version>2.2</version> | ||
</extension> | ||
</extensions> | ||
|
||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-archetype-plugin</artifactId> | ||
<version>2.2</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-clean-plugin</artifactId> | ||
<version>2.6.1</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>2.8.2</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-install-plugin</artifactId> | ||
<version>2.5.2</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>2.7</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-site-plugin</artifactId> | ||
<version>3.4</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
|
||
<distributionManagement> | ||
<repository> | ||
<id>localwww</id> | ||
<url>file:/var/repo</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
</project> |
51 changes: 51 additions & 0 deletions
51
archetypes/eds-starter-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<archetype-descriptor xsi:schemaLocation="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0 http://maven.apache.org/xsd/archetype-descriptor-1.0.0.xsd" name="eds-starter" | ||
xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
|
||
<requiredProperties> | ||
<requiredProperty key="jsAppNamespace"> | ||
<defaultValue>App</defaultValue> | ||
</requiredProperty> | ||
</requiredProperties> | ||
|
||
<fileSets> | ||
<fileSet filtered="true" packaged="true" encoding="UTF-8"> | ||
<directory>src/main/java</directory> | ||
<includes> | ||
<include>**/*.java</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet filtered="true" encoding="UTF-8"> | ||
<directory>src/main/resources</directory> | ||
<includes> | ||
<include>**/*.txt</include> | ||
<include>**/*.xml</include> | ||
<include>**/*.properties</include> | ||
<include>**/*.js</include> | ||
<include>**/*.template</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet encoding="UTF-8"> | ||
<directory>src/main/resources</directory> | ||
<includes> | ||
<include>**/*.css</include> | ||
<include>**/*.ico</include> | ||
<include>**/*.gif</include> | ||
<include>**/*.svg</include> | ||
<include>**/*.ttf</include> | ||
<include>**/*.png</include> | ||
<include>**/*.json</include> | ||
<include>**/*.yml</include> | ||
<include>**/*.eot</include> | ||
<include>**/*.woff</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet encoding="UTF-8"> | ||
<directory>customtheme/sass</directory> | ||
<includes> | ||
<include>**/*.scss</include> | ||
</includes> | ||
</fileSet> | ||
</fileSets> | ||
</archetype-descriptor> |
3 changes: 3 additions & 0 deletions
3
...rter-archetype/src/main/resources/archetype-resources/customtheme/sass/var/Component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
$base-color: #157fcc !default; | ||
$base-highlight-color: mix(#fff, $base-color, 15%) !default; | ||
$base-light-color: mix(#fff, $base-color, 65%) !default; |
6 changes: 6 additions & 0 deletions
6
...tarter-archetype/src/main/resources/archetype-resources/customtheme/sass/var/tab/Tab.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
$tab-base-color-active: mix(#fff, $base-highlight-color, 10%) !default; | ||
$tab-base-color: $base-light-color !default; | ||
|
||
$tab-color-active: #fff !default; | ||
$tab-color: $base-color !default; | ||
$tab-color-over: #fff !default; |
Oops, something went wrong.