Skip to content

Commit

Permalink
Move archetypes to attic
Browse files Browse the repository at this point in the history
  • Loading branch information
ralscha committed Sep 25, 2015
1 parent a300b64 commit a2bad04
Show file tree
Hide file tree
Showing 483 changed files with 20,118 additions and 0 deletions.
1 change: 1 addition & 0 deletions archetypes/README
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mvn archetype:generate -DarchetypeCatalog=https://repo.rasc.ch
53 changes: 53 additions & 0 deletions archetypes/archetype-catalog.xml
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>
15 changes: 15 additions & 0 deletions archetypes/check_dependencies.bat
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
17 changes: 17 additions & 0 deletions archetypes/clean.bat
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
8 changes: 8 additions & 0 deletions archetypes/create-from-project.bat
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
62 changes: 62 additions & 0 deletions archetypes/eds-starter-archetype/pom.xml
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>
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>
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;
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;
Loading

0 comments on commit a2bad04

Please sign in to comment.