pom.xml 설정 팁 2가지 정리

1. 로컬환경과 운영환경 선택적으로 build배포하기

2. 웹서버에 배포될 정적 리소스를 제거하고 build 하기


첫번째로 profiles를 이용하여 로컬환경과 운영환경 선택적으로 build배포하기 입니다.

<profiles>

<profile>

<id>dev</id>

<activation>

<activeByDefault>true</activeByDefault>

</activation>

<properties>

<env>dev</env>

</properties>

</profile>

<profile>

<id>real</id>

<properties>

<env>real</env>

</properties>

</profile>

</profiles>

... 중략...

        <resources>

    <resource>

<directory>src/main/resources</directory>

    </resource>

    <resource>

  <directory>src/main/resources-${env}</directory>

    </resource>

</resources>

src/main/ 이하에 resources 관련 디렉토리를 아래와 같이 구분하여 정리합니다.

> main

    > java

    > resources

    > resources-dev

    > resources-real


두번째는 웹서버에 배포될 정적 리소스를 제거하고 build 하기입니다.

<plugins>

<!-- WAR 동적 파일 -->

<plugin>

<groupId>org.apache.maven.plugins</groupId>

<artifactId>maven-war-plugin</artifactId>

<version>2.2</version>

<configuration>

    <warName>testBuild-was</warName>

    <warSourceExcludes>css/**,form/**,html/**,images/**,js/**,resource/**</warSourceExcludes>

</configuration>

</plugin>





maven war build시 source 포함시키기

Posted 2014. 2. 25. 10:51

Default로 maven을 build하면 java source는 배포되지 않습니다.

하지만 Sample code 같은 소스가 필요해서 함께 배포해야 한다면 다음과 같이 설정하면 됩니다.

이렇게 배포된 소스는 dynamic web project로 import 하여 개발이 가능합니다.

 

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <configuration>
     <webResources>
      <resource>
       <directory>${basedir}/src/main/java</directory>
       <targetPath>WEB-INF/classes</targetPath>
      </resource>
     </webResources>
    </configuration>
  </plugin>

 

위와 같이 배포된 war 파일의 압축을 풀면 /WEB-INF/classes/에 .java 파일이 .class파일과 함께 포함되어 있는것을 확인할 수 있습니다.

이제 배포된 war 파일을 dynamic web project로 import 해보도록 합니다.

아래와 같은 모습을 하는 웹프로젝트가 생성됩니다.

 

 

이제 설정 및 소스를 수정해서 eclipse war로 배포하면 됩니다.

 

참고로 war 의 소스가 아닌 jar 의 소스버전을 포함한 build를 하기 위해서 제공되는 plugin 및 사용방법은 다음과 같습니다.

참고 : http://whiteship.tistory.com/2242

             <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

 

 

maven 은 참 알면 알수록 다양한 기능을 제공합니다.

 

 

 

 




Choose archetype:

1: remote -> br.com.ingenieux:elasticbeanstalk-service-webapp-archetype (A Maven Archetype Encompassing RestAssured, Jetty, Jackson, Guice and Jersey for Publishing JAX-RS-based Services on AWS' Elastic Beanstalk Service)

2: remote -> br.gov.frameworkdemoiselle.archetypes:demoiselle-jsf-jpa (Archetype for web applications (JSF + JPA) using Demoiselle Framework)

3: remote -> br.gov.frameworkdemoiselle.archetypes:demoiselle-minimal (Basic archetype for generic applications using Demoiselle Framework)

4: remote -> br.gov.frameworkdemoiselle.archetypes:demoiselle-vaadin-jpa (Archetype for Vaadin web applications)

5: remote -> co.ntier:spring-mvc-archetype (An extremely simple Spring MVC archetype, configured with NO XML.)

6: remote -> com.abiquo:storage-plugin-archetype (-)

7: remote -> com.agilejava.docbkx:docbkx-quickstart-archetype (-)

8: remote -> com.airhacks:igniter (An application template for building Java FX MVP applications with Dependency Injection and afterburner.fx)

9: remote -> com.airhacks:javaee7-essentials-archetype (Java EE 7 project template. Clean, lean and minimalistic.)

10: remote -> com.alibaba.citrus.sample:archetype-webx-quickstart (-)

11: remote -> com.astamuse:asta4d-archetype (an archetype that is automatically created from asta4d-sample.)

12: remote -> com.atolcd.alfresco:repo-archetype (Alfresco repository module archetype)

13: remote -> com.atolcd.alfresco:share-archetype (Alfresco Share module archetype)

14: remote -> com.bsb.common.vaadin:com.bsb.common.vaadin.embed-simple-archetype (-)

15: remote -> com.bsb.common.vaadin:com.bsb.common.vaadin7.embed-simple-archetype (-)

16: remote -> com.cedarsoft.open.archetype:multi (-)

17: remote -> com.cedarsoft.open.archetype:simple (-)

18: remote -> com.cloudfoundry.tothought:spring-data-basic (A basic setup for Spring Data + Hibernate + MySql)

19: remote -> com.crawljax.plugins.archetypes:crawljax-plugins-archetype (Generates a Crawljax project template.)

20: remote -> com.dyuproject.protostuff.archetype:basic-gwt-webapp (webapp archetype using protostuff, json and gwt)

21: remote -> com.dyuproject.protostuff.archetype:basic-webapp (webapp archetype using protostuff, json and jquery)

22: remote -> com.dyuproject.protostuff.archetype:simple-gwt-webapp (webapp archetype using protobuf, json and gwt)

23: remote -> com.dyuproject.protostuff.archetype:simple-webapp (webapp archetype using protobuf, json and jquery)

24: remote -> com.eclipsesource.tabris:tabris-application (Archetype to create a Tabris based Application)

25: remote -> com.force.sdk:springmvc-archetype (-)

26: remote -> com.gfk.senbot:SenBotArchetype (Archetype to create new project exposing the SenBot (junit/cucumber/selenium acceptance test executor) to your test environment.)

27: remote -> com.gfk.senbot:SenBotDemo-archetype (A SenBot Demo project with the purpose to demonstrate all available SenBot features.)

28: remote -> com.github.akiraly.reusable-poms:simple-java-project-with-spring-context-archetype (-)

29: remote -> com.github.akiraly.reusable-poms:simple-java-project-with-spring-hibernate-querydsl-archetype (-)

30: remote -> com.github.akiraly.reusable-poms:simple-java-project-with-util-libs-archetype (-)

31: remote -> com.github.apetrelli.samplegwt:samplegwt-archetype (A complete but simple archetype that connects GWT to several technologies: JPA 2, Hibernate, Spring Core, Spring Security, Spring Transactions.)

32: remote -> com.github.casmi.archetypes:casmi-quickstart (Quickstart archetype for casmi project)

33: remote -> com.github.dakusui:logiaslisp (A JSON based Lisp processor.)

34: remote -> com.github.dakusui:symfonion (A JSON based music macro language processor.)

35: remote -> com.github.genthaler:ant-maven-plugin-archetype (Maven Archetype to generate an Ant-based Maven Plugin)

36: remote -> com.github.genthaler:beanshell-maven-plugin-archetype (Maven Archetype to generate an Beanshell-based Maven Plugin)

37: remote -> com.github.igor-petruk.archetypes:maven-archetype-executable (Executable Quickstart Archetype that is ready to run with 'java -jar')

38: remote -> com.github.igor-petruk.archetypes:maven-archetype-scala-executable (Creates executable Scala Project that is ready to run with 'java -jar')

39: remote -> com.github.jpaoletti:jpm-archetype (Archetype for a jpm-struts1-bootstrap project)

40: remote -> com.github.lalyos:standalone-jpa-eclipselink-archetype (StandAlone (j2se) jpa project with eclipseLink implementations using embedded DerbiDB)

41: remote -> com.github.markusbernhardt:robotframework-archetype-annotationlibrary (Robot Framework archetype for creating a testsuite)

42: remote -> com.github.markusbernhardt:robotframework-archetype-quickstart (Robot Framework archetype for creating a testsuite)

43: remote -> com.github.markusbernhardt:robotframework-archetype-selenium2library (Robot Framework archetype for creating a testsuite)

44: remote -> com.github.mhshams:kotlin-quickstart-archetype (Kotlin Quick Start Archetype)

45: remote -> com.github.searls:jasmine-archetype (An archetype to get started with JavaScript unit testing with Jasmine.)

46: remote -> com.github.venkatramanm.swf-all:swf-archetype (Archetype to create apps using SWF)

47: remote -> com.github.venkatramanm.swf-all:swf-plugin-archetype (Archetype to create plugins for SWF)

48: remote -> com.google.appengine.archetypes:appengine-skeleton-archetype (-)

49: remote -> com.google.appengine.archetypes:guestbook-archetype (-)

50: remote -> com.google.appengine.archetypes:skeleton-archetype (-)

51: remote -> com.google.appengine.demos:guestbook-archetype (-)

52: remote -> com.google.code.plsqlmaven:plsql-package-archetype (a sample archetype that creates a project with a PL/SQL package inside and extends the parent project)

53: remote -> com.google.code.plsqlmaven:plsql-project-archetype (preconfigured PL/SQL project)

54: remote -> com.google.code.plsqlmaven:plsql-webapp-archetype (preconfigured PL/SQL webapp)

55: remote -> com.google.sitebricks:sitebricks-jetty-archetype (-)

56: remote -> com.googlecode.android-player-root-archetype:parent-archetype (-)

57: remote -> com.googlecode.apparat:apparat-archetype-asm (-)

58: remote -> com.googlecode.apparat:apparat-archetype-tdsi (-)

59: remote -> com.googlecode.etl-unit:etlunit-feature-archetype (-)

60: remote -> com.googlecode.etl-unit:etlunit-project-archetype (-)

61: remote -> com.googlecode.gwtquery:gquery-archetype (This archetype generates a Gwt-2.5.0-rc1 project with all set to use GwtQuery and its plugins.)

62: remote -> com.googlecode.gwtquery:gquery-plugin-archetype (-)

63: remote -> com.googlecode.jannocessor:jannocessor-sample-archetype (Multi-module sample project for annotation-driven source code generation with JAnnocessor)

64: remote -> com.googlecode.jdbc-proc:jdbc-proc-archetype (Creates simple project with jdbc-proc support)

65: remote -> com.googlecode.metridoc:metridoc-archetype (-)

66: remote -> com.googlecode.mycontainer:mycontainer-gae-archetype (-)

67: remote -> com.googlecode.playn:playn-archetype (Archetype for PlayN game projects.)

68: remote -> com.highwise:weby (A simple spring mvc + hibernate project archetype)

69: remote -> com.jamcracker.adapter.jit:jit-adapter-archetype (-)

70: remote -> com.jgeppert.struts2.jquery:struts2-jquery-archetype-base (This Archetype provides a Webapp Configuration ready for the Struts2 jQuery Plugin.)

71: remote -> com.jgeppert.struts2.jquery:struts2-jquery-archetype-mobile (This Archetype provides a Webapp Configuration ready for the Struts2 jQuery Mobile Plugin.)

72: remote -> com.jgeppert.struts2.jquery:struts2-jquery-bootstrap-archetype-grid (This Archetype provides a Webapp Configuration ready for the Struts2 jQuery Grid Plugin and the Struts2 Bootstrap Plugin.)

73: remote -> com.liferay.maven.archetypes:liferay-ext-archetype (Provides an archetype to create Liferay extensions.)

74: remote -> com.liferay.maven.archetypes:liferay-hook-archetype (Provides an archetype to create Liferay hooks.)

75: remote -> com.liferay.maven.archetypes:liferay-layouttpl-archetype (Provides an archetype to create Liferay layout templates.)

76: remote -> com.liferay.maven.archetypes:liferay-portlet-archetype (Provides an archetype to create Liferay portlets.)

77: remote -> com.liferay.maven.archetypes:liferay-portlet-icefaces-archetype (Provides an archetype to create Liferay ICEfaces portlets.)

78: remote -> com.liferay.maven.archetypes:liferay-portlet-jsf-archetype (Provides an archetype to create Liferay JSF portlets.)

79: remote -> com.liferay.maven.archetypes:liferay-portlet-liferay-faces-alloy-archetype (Provides an archetype to create Liferay Faces Alloy portlets.)

80: remote -> com.liferay.maven.archetypes:liferay-portlet-primefaces-archetype (Provides an archetype to create Liferay PrimeFaces portlets.)

81: remote -> com.liferay.maven.archetypes:liferay-portlet-richfaces-archetype (Provides an archetype to create Liferay RichFaces portlets.)

82: remote -> com.liferay.maven.archetypes:liferay-servicebuilder-archetype (Provides an archetype to create Liferay Service Builder portlets.)

83: remote -> com.liferay.maven.archetypes:liferay-theme-archetype (Provides an archetype to create Liferay themes.)

84: remote -> com.liferay.maven.archetypes:liferay-web-archetype (Provides an archetype to create Liferay webs.)

85: remote -> com.lordofthejars.thymeleafarchetype:thymeleaf-spring-maven-archetype (Thymeleaf Spring Maven Archetype)

86: remote -> com.matthewjosephtaylor.archetypes:application-archetype (Maven archetype for a single-jar application)

87: remote -> com.mikenimer:extjs-springmvc-webapp (A maven Archetype to create new EXTJS project powered by a spring MVC service.)

88: remote -> com.mycodefu:executable-jar-archetype (An archetype to create a Java project which is easy to deploy and execute.)

89: remote -> com.mysema.rdf:rdfbean-tapestry-quickstart (Archetype for creating a basic RDFBean Tapestry 5 application.)

90: remote -> com.mysema.rdfbean:rdfbean-tapestry-quickstart (-)

91: remote -> com.nativelibs4java:javacl-simple-tutorial (-)

92: remote -> com.nitorcreations:dope-archetype (-)

93: remote -> com.ontology2:centipede-archetype (archetype for command line applications based on Centipede, Spring and Guava)

94: remote -> com.pojosontheweb:woko-archetype (-)

95: remote -> com.proofpoint.platform:sample-server-archetype (Sample server archetype)

96: remote -> com.proofpoint.platform:skeleton-server-archetype (Skeleton server archetype)

97: remote -> com.pyx4me:j2me-simple (Maven 2 Archetype for midlet application using j2me-maven-plugin)

98: remote -> com.rexsl:rexsl-maven-archetype (-)

99: remote -> com.sibvisions.jvx:jvxapplication-archetype (A preconfigured setup for a JVx application)

100: remote -> com.sixdimensions.wcm.cq:cq-deploy-plugin (Maven plugin for automating code deployments to Adobe CQ.)

101: remote -> com.sixsq.slipstream:slipstream-module (-)

102: remote -> com.strategicgains.archetype:restexpress-scaffold-minimal (A Minimal RestExpress Server)

103: remote -> com.strategicgains.archetype:restexpress-scaffold-mongodb (A Basic, MongoDB-backed Service Suite)

104: remote -> com.sun.faces:faces-2.1-test-war-archetype (Archetype to create automated test based on JSF 2.1)

105: remote -> com.sun.faces:faces-2.2-test-war-archetype (Create a JSF 2.2 vanilla app.)

106: remote -> com.sun.faces.regression:i_jsf_XXXX-archetype (-)

107: remote -> com.sun.faces.test:i_jsf_xxxx_htmlunit-archetype (-)

108: remote -> com.sun.jersey.archetypes:jersey-quickstart-ejb (An archetype which contains a simple Jersey based EJB project.)

109: remote -> com.sun.jersey.archetypes:jersey-quickstart-grizzly (An archetype which contains a quickstart Jersey project based on Grizzly container.)

110: remote -> com.sun.jersey.archetypes:jersey-quickstart-grizzly2 (An archetype which contains a quickstart Jersey project based on Grizzly2 container.)

111: remote -> com.sun.jersey.archetypes:jersey-quickstart-webapp (An archetype which contains a sample Jersey based Webapp project.)

112: remote -> com.taobao.itest:itest-sample-s30-archetype (-)

113: remote -> com.tqlab.sense:tqlab-sense-archetype (tqlab sense archetype)

114: remote -> com.vaadin:vaadin-archetype-addon (-)

115: remote -> com.vaadin:vaadin-archetype-application (This archetype generates a simple Vaadin application as a Maven project.)

116: remote -> com.vaadin:vaadin-archetype-clean (This archetype generates a simple Vaadin application as a Maven project. No custom widgetset is included.)

117: remote -> com.vaadin:vaadin-archetype-jpacontainer (This archetype generates a simple Vaadin application using JPAContainer as a Maven project.)

118: remote -> com.vaadin:vaadin-archetype-portlet (This archetype creates a simple porlet with required Vaadin dependencies. In addition to standard JSR 286 configurations the archetype also adds liferay specific configuration files, but they shoudn't affect other portals.)

119: remote -> com.vaadin:vaadin-archetype-sample (This archetype generates a Vaadin application as a Maven project. The application contains a custom GWT widgetset that is compiled by the GWT compiler and integrated into the project as part of the build process. The application is based on the Vaadin Color Picker Demo application available at http://vaadin.com.)

120: remote -> com.vaadin:vaadin-archetype-touchkit (This archetype generates a simple Vaadin application using TouchKit as a Maven project.)

121: remote -> com.vaadin:vaadin-archetype-widget (This archetype generates a Vaadin widget project for Vaadin 7.x and a test application for Vaadin 7.1.)

122: remote -> com.vaadin:vaadin-maven-plugin (Maven plugin for Vaadin.)

123: remote -> com.vaushell:archetype-exec (archetype for an executable (not a library))

124: remote -> com.vaushell:archetype-library (archetype for a library (not an executable))

125: remote -> com.vektorsoft.demux.tools:demux-android-archetype (Create Android application structure for DEMUX Framework applications)

126: remote -> com.vektorsoft.demux.tools:demux-bundle-archetype (Create application bundles for DEMUX Framework applications)

127: remote -> com.vektorsoft.demux.tools:demux-jfx-archetype (Create JavaFX desktop application structure for DEMUX Framework applications)

128: remote -> com.wadpam.gaelic:gaelic-archetype-starter (-)

129: remote -> com.willowtreeapps:oak-archetype (-)

130: remote -> com.willowtreeapps:oak-dagger-api15-archetype (-)

131: remote -> com.willowtreeapps:oak-dagger-archetype (-)

132: remote -> com.zenjava:javafx-basic-archetype (The JavaFX Basic Archetype provides core functionality for assembling JavaFX applications.)

133: remote -> com.zenjava:javafx-rest-archetype (The JavaFX Basic Archetype provides a Maven archetype for generating a basic JavaFX REST client-server starter project.)

134: remote -> de.akquinet.android.archetypes:android-gcm-quickstart (Creates a skeleton for a GCM Android application)

135: remote -> de.akquinet.android.archetypes:android-library-quickstart (Creates a skeleton for an Android library)

136: remote -> de.akquinet.android.archetypes:android-quickstart (Creates a skeleton for an Android application)

137: remote -> de.akquinet.android.archetypes:android-release (Creates a skeleton for an Android application, instrumentation tests and ready-to-publish application on releases.)

138: remote -> de.akquinet.android.archetypes:android-with-test (Creates a skeleton for an Android application and instrumentation tests)

139: remote -> de.akquinet.android.archetypes:stand-archetype (Creates a skeleton for an Android application using the Stand framework stack)

140: remote -> de.akquinet.chameria:chameria-quickstart-archetype (-)

141: remote -> de.akquinet.javascript.archetypes:javascript-jqueryplugin (-)

142: remote -> de.akquinet.javascript.archetypes:javascript-quickstart (-)

143: remote -> de.akquinet.jbosscc:jbosscc-javaee6-modular-ear-archetype (Maven Archetype to generate a modular Java EE 6 based project skeleton.)

144: remote -> de.akquinet.jbosscc:jbosscc-seam-archetype (Maven Archetype to generate a Seam Application - running on JBoss AS7)

145: remote -> de.cologneintelligence:archetype-fitgoodies-quickstart (Archetype which generates an FitGoodies-enabled example project)

146: remote -> de.crowdcode.kissmda.maven:kissmda-maven-app-archetype (-)

147: remote -> de.crowdcode.kissmda.maven:kissmda-maven-cartridge-archetype (-)

148: remote -> de.cubeisland.maven.archetypes:archetype-cubeengine-module (This archetype generates a new module for the Cube Engine.)

149: remote -> de.holisticon.archetypes:java-library (Please refer to https://github.com/holisticon/java-library-archetype.)

150: remote -> de.learnlib.archetypes:complete (Archetype which includes all LearnLib dependencies)

151: remote -> de.learnlib.archetypes:core (Archetype providing dependencies for core functionalities of LearnLib)

152: remote -> de.learnlib.archetypes:typical (Archetype for a typical LearnLib setup, including the most commonly used dependencies)

153: remote -> de.saumya.mojo:rails-maven-archetype (-)

154: remote -> de.schlichtherle:javafx-scala-demo (An archetype for a standalone JavaFX 2.0 application written in Scala. The generated application is translated from the Colorful Circles demo from the JavaFX 2.0 SDK.)

155: remote -> de.schlichtherle.truezip:truezip-archetype-file (TrueZIP File* module application - requires JSE 6.)

156: remote -> de.schlichtherle.truezip:truezip-archetype-path (TrueZIP Path module application - requires JSE 7.)

157: remote -> dk.jacobve.maven.archetypes:maven-archetype-flex (An archetype which contains a sample Maven Flex project using the israfil maven plugin)

158: remote -> dk.navicon:valkyrie-rcp-archetype (Archetype for creating new Valkyrie projects.)

159: remote -> es.ucm.fdi.grasia.faerie.archetypes:basic (Project for definition and implementation of an architecture/framework for Ambient-Assited Living systems)

160: remote -> eu.stratosphere:quickstart-java (-)

161: remote -> eu.stratosphere:quickstart-scala (-)

162: remote -> eu.vitaliy:java6se-spring3-archetype (Simple spring 3 archetype)

163: remote -> fr.ybonnel:simpleweb4j-archetype (An archetype for SimpleWeb4j.)

164: remote -> io.airlift:sample-server-archetype (Sample server archetype)

165: remote -> io.airlift:skeleton-server-archetype (Skeleton server archetype)

166: remote -> io.brooklyn:brooklyn-archetype-quickstart (This project defines an archetype for creating new projects which consume brooklyn,  including an example application and an example new entity type,  able to build an OSGi JAR and a binary assembly, with logging and READMEs.)

167: remote -> io.vertx:vertx-maven-archetype (-)

168: remote -> it.amattioli:javate-zk-archetype (-)

169: remote -> it.amattioli:javate-zk-jpa-archetype (-)

170: remote -> it.amattioli.archetypes:javate-zk-archetype (-)

171: remote -> it.tidalwave.netbeans:netbeans-platform-application-archetype (Tidalwave NetBeans Platform Application Archetype)

172: remote -> it.tidalwave.netbeans:netbeans-platform-archetype (Tidalwave NetBeans Platform Archetype)

173: remote -> it.tidalwave.northernwind:simple-project-site-archetype-1 (-)

174: remote -> it.tidalwave.northernwind:simple-site1-step1-archetype (-)

175: remote -> it.tidalwave.thesefoolishthings:project-archetype (TheseFoolishThings - Project Archetype)

176: remote -> javax.faces:javax.faces-war-archetype (A simple project with war packaging that depends on JSF 2.2 and  javaee 6, in that order.)

177: remote -> jboss:mobicents-ra-mavenization-archetype (-)

178: remote -> me.noroutine:tobacco-bootstrap (Web Application with all modern client libraries)

179: remote -> net.alchim31.maven:scala-archetype-simple (The maven-scala-plugin is used for compiling/testing/running/documenting scala code in maven.)

180: remote -> net.automatalib.archetypes:complete (-)

181: remote -> net.automatalib.archetypes:core (-)

182: remote -> net.automatalib.archetypes:typical (-)

183: remote -> net.avh4.mvn.archetype:java-1.6-archetype (-)

184: remote -> net.contextfw:web-quickstart (Context Web Application Framework - Quickstart)

185: remote -> net.databinder:data-app (To make creating a new Databinder application easier, this archetype includes all required sources and resources.)

186: remote -> net.databinder.maven.net.databinder:data-app (To make creating a new Databinder application easier, this archetype includes all required sources and resources.)

187: remote -> net.devonlinux.solr:solr-quickstart-archetype (-)

188: remote -> net.devonlinux.solr:solr-quickstart-archetype-no-acceptance-tests (-)

189: remote -> net.flexmojos.oss:flexmojos-archetypes-application (-)

190: remote -> net.flexmojos.oss:flexmojos-archetypes-library (-)

191: remote -> net.flexmojos.oss:flexmojos-archetypes-modular-webapp (-)

192: remote -> net.ja731j.bukkit:bukkit-plugin-simple (A Maven archetype which creates a simple Bukkit plugin)

193: remote -> net.java.truelicense:truelicense-maven-archetype (Provides a Maven archetype for license vendor and consumer applications.)

194: remote -> net.java.trueupdate:trueupdate-archetype-glassfish (An archetype for a TrueUpdate application running in Oracle GlassFish.)

195: remote -> net.java.trueupdate:trueupdate-archetype-tomcat (An archetype for a TrueUpdate application running in Apache Tomcat.)

196: remote -> net.java.truevfs:truevfs-archetype-access (Showcases the client API of the module TrueVFS Access.)

197: remote -> net.java.truevfs:truevfs-archetype-profile (Creates a custom TrueVFS Profile which bundles all selected TrueVFS modules for ease of use with and without Maven.)

198: remote -> net.kindleit:gae-archetype-gwt (Archetype for creating maven-gae projects that uses GWT for the view)

199: remote -> net.kindleit:gae-archetype-jsf (Archetype for creating maven-gae projects that works under Java Server Faces)

200: remote -> net.kindleit:gae-archetype-jsp (Archetype for creating maven-gae projects that uses jsp for the view)

201: remote -> net.kindleit:gae-archetype-objectify-jsp (Archetype for creating maven-gae projects that uses jsp for the view and Objectify for the ORM.)

202: remote -> net.kindleit:gae-archetype-wicket (Archetype for creating maven-gae projects based on apache wicket framework)

203: remote -> net.ladstatt:scala-javafx-archetype (The Scala JavaFX Archetype provides a simple template for a scala based  JavaFX project)

204: remote -> net.liftweb:lift-archetype-basic (Basic project archetype for Lift Web Framework (with database, logging, user management).)

205: remote -> net.liftweb:lift-archetype-basic_2.10 (Basic project archetype for Lift Web Framework (with database, logging, user management).)

206: remote -> net.liftweb:lift-archetype-basic_2.7.7 (Basic project archetype for Lift Web Framework (with database, logging, user management).)

207: remote -> net.liftweb:lift-archetype-basic_2.8.0 (Basic project archetype for Lift Web Framework (with database, logging, user management).)

208: remote -> net.liftweb:lift-archetype-basic_2.8.1 (-)

209: remote -> net.liftweb:lift-archetype-basic_2.9.1 (Basic project archetype for Lift Web Framework (with database, logging, user management).)

210: remote -> net.liftweb:lift-archetype-blank (Blank project archetype for Lift Web Framework.)

211: remote -> net.liftweb:lift-archetype-blank_2.10 (Blank project archetype for Lift Web Framework.)

212: remote -> net.liftweb:lift-archetype-blank_2.7.7 (Blank project archetype for Lift Web Framework.)

213: remote -> net.liftweb:lift-archetype-blank_2.8.0 (Blank project archetype for Lift Web Framework.)

214: remote -> net.liftweb:lift-archetype-blank_2.8.1 (-)

215: remote -> net.liftweb:lift-archetype-blank_2.9.1 (Blank project archetype for Lift Web Framework.)

216: remote -> net.liftweb:lift-archetype-hellolift (Archetype - hellolift, a sample Lift application)

217: remote -> net.liftweb:lift-archetype-jpa-basic (Basic JPA archetype for Lift Web Framework.)

218: remote -> net.liftweb:lift-archetype-jpa-basic_2.10 (Basic JPA archetype for Lift Web Framework.)

219: remote -> net.liftweb:lift-archetype-jpa-basic_2.7.7 (Basic JPA archetype for Lift Web Framework.)

220: remote -> net.liftweb:lift-archetype-jpa-basic_2.8.0 (Basic JPA archetype for Lift Web Framework.)

221: remote -> net.liftweb:lift-archetype-jpa-basic_2.8.1 (-)

222: remote -> net.liftweb:lift-archetype-jpa-basic_2.9.1 (Basic JPA archetype for Lift Web Framework.)

223: remote -> net.liftweb:lift-archetype-jpa-blank (Blank JPA archetype for Lift Web Framework.)

224: remote -> net.liftweb:lift-archetype-jpa-blank-single (Blank JPA archetype for Lift Web Framework (single project).)

225: remote -> net.liftweb:lift-archetype-jpa-blank-single_2.10 (Blank JPA archetype for Lift Web Framework (single project).)

226: remote -> net.liftweb:lift-archetype-jpa-blank-single_2.7.7 (Blank JPA archetype for Lift Web Framework (single project).)

227: remote -> net.liftweb:lift-archetype-jpa-blank-single_2.8.0 (Blank JPA archetype for Lift Web Framework (single project).)

228: remote -> net.liftweb:lift-archetype-jpa-blank-single_2.8.1 (-)

229: remote -> net.liftweb:lift-archetype-jpa-blank-single_2.9.1 (Blank JPA archetype for Lift Web Framework (single project).)

230: remote -> net.liftweb:lift-archetype-jpa-blank_2.10 (Blank JPA archetype for Lift Web Framework.)

231: remote -> net.liftweb:lift-archetype-jpa-blank_2.7.7 (Blank JPA archetype for Lift Web Framework.)

232: remote -> net.liftweb:lift-archetype-jpa-blank_2.8.0 (Blank JPA archetype for Lift Web Framework.)

233: remote -> net.liftweb:lift-archetype-jpa-blank_2.8.1 (-)

234: remote -> net.liftweb:lift-archetype-jpa-blank_2.9.1 (Blank JPA archetype for Lift Web Framework.)

235: remote -> net.liftweb:lift-archetype-mvc_2.10 (Minimal MVC based project archetype for Lift Web Framework.)

236: remote -> net.liftweb:lift-archetype-mvc_2.9.1 (Minimal MVC based project archetype for Lift Web Framework.)

237: remote -> net.liftweb:lift-archetype-sbt (Basic project archetype for Lift Web Framework (with database, logging, user management) using the sbt build system)

238: remote -> net.liftweb:lift-archetype-sbt_2.7.7 (Basic project archetype for Lift Web Framework (with database, logging, user management) using the sbt build system)

239: remote -> net.liftweb:lift-archetype-sbt_2.8.0 (Basic project archetype for Lift Web Framework (with database, logging, user management) using the sbt build system)

240: remote -> net.liftweb:lift-archetype-sbt_2.8.1 (-)

241: remote -> net.liftweb:lift-archetype-sbt_2.9.1 (Basic project archetype for Lift Web Framework (with database, logging, user management) using the sbt build system)

242: remote -> net.officefloor.maven:woof-archetype (Archetype to generate a WoOF project)

243: remote -> net.osgiliath.archetypes:net.osgiliath.archetype.business (This is the business archetype of Osgiliath framework)

244: remote -> net.osgiliath.archetypes:net.osgiliath.archetype.model (This is the Model archetype of Osgiliath framework)

245: remote -> net.osgiliath.archetypes:net.osgiliath.archetype.parent (This is the parent archetype of Osgiliath framework)

246: remote -> net.osgiliath.archetypes:net.osgiliath.archetype.routes (This is the route archetype of osgiliath framework)

247: remote -> net.osgiliath.archetypes:net.osgiliath.archetype.ui (This is the ui archetype of Osgiliath framework)

248: remote -> net.phaedra:phaedra-archetype (-)

249: remote -> net.sf.ingenias:iafarch-empty (-)

250: remote -> net.sf.ingenias:iafarch-gui (-)

251: remote -> net.sf.ingenias:iafarch-helloworld (-)

252: remote -> net.sf.ingenias:iafarch-interaction (-)

253: remote -> net.sf.itcb.archetype:common-archetype (Archetype that might be used by IT managers in order to create the common packages of custom IT. groupId, artifactId, package, version, companyMainGroupId, companyMainArtifactId, companyMainVersion, company, companyUrl have to be defined in archetype execution. By convention, we recommend to call this module common-"yourcompany".)

254: remote -> net.sf.itcb.archetype:main-archetype (Archetype that might be used by IT managers in order to create the base of custom IT. archetypeId, groupId, version, company and companyUrl have to be defined in archetype execution. By convention, we recommend to call this module main-"yourcompany".)

255: remote -> net.sf.jlue:jlue-archetype-basic (Archetype - basic project for Jlue)

256: remote -> net.sf.jlue:jlue-archetype-blank (Archetype - blank project for Jlue)

257: remote -> net.sf.maven-autotools:maven-autotools-archetype-executable (-)

258: remote -> net.sf.maven-autotools:maven-autotools-archetype-shared (-)

259: remote -> net.sf.maven-har:maven-archetype-har (-)

260: remote -> net.sf.maven-sar:maven-archetype-sar (-)

261: remote -> net.sf.mgp:maven-archetype-gwt (An archetype which contains a sample Maven GWT project.)

262: remote -> net.sf.portletunit:portletunit-portlet-archetype (An archetype that creates a simple porltet with unit tests.)

263: remote -> net.sf.squirrel-sql.plugins:squirrelsql-plugin-archetype (This project produces the maven archetype that can be used to generate a SQuirreL Plugin maven project. The project that is produced contains an Example plugin that demonstrates the use of key plugin APIs.)

264: remote -> net.sf.uctool:uctool-archetype (Creates a new project ready to be used with Use Case Tool.)

265: remote -> net.sourceforge.ota-tools.schema:ota-tools-schema-archetype (-)

266: remote -> net.thejeearchitectcookbook:jsf-jqmobile-archetype (JSF 2 and JQuery Mobile basic web archetype.)

267: remote -> net.thucydides:thucydides-easyb-archetype (Thucydides automated acceptance testing project using Selenium 2, JUnit and easyb)

268: remote -> net.thucydides:thucydides-jbehave-archetype (Thucydides automated acceptance testing project using Selenium 2, JUnit and JBehave)

269: remote -> net.thucydides:thucydides-simple-archetype (Thucydides automated acceptance testing project using Selenium 2 and JUnit)

270: remote -> no.tornado:modular-app-archetype (Modular application archetype based on Tornado Inject - One service and one client module.)

271: remote -> no.tornado:web-quickstart (Quickstart Archetype for)

272: remote -> org.aerysoft.minimaven:minimaven-ghsite-simple (A simple Maven archetype for GitHub-hosted static website.)

273: remote -> org.antlr:antlr3-maven-archetype (ANTLR 3 Maven Archetype)

274: remote -> org.apache.accumulo:accumulo-instamo-archetype (-)

275: remote -> org.apache.archiva:archiva-consumer-archetype (Simple archetype to create archiva consumers)

276: remote -> org.apache.avro:avro-service-archetype (Archetype that generates a simple example Avro service)

277: remote -> org.apache.camel:camel-component (-)

278: remote -> org.apache.camel:camel-router (-)

279: remote -> org.apache.camel.archetypes:camel-archetype-activemq (Creates a new Camel project that configures and interacts with ActiveMQ.)

280: remote -> org.apache.camel.archetypes:camel-archetype-blueprint (Creates a new Camel project with OSGi blueprint support. Ready to be deployed in OSGi.)

281: remote -> org.apache.camel.archetypes:camel-archetype-component (Creates a new Camel component.)

282: remote -> org.apache.camel.archetypes:camel-archetype-component-scala (Creates a new Camel component with Scala.)

283: remote -> org.apache.camel.archetypes:camel-archetype-cxf-code-first-blueprint (Creates a new Camel project with Apache CXF code-first example using OSGi blueprint.)

284: remote -> org.apache.camel.archetypes:camel-archetype-cxf-contract-first-blueprint (Creates a new Camel project with Apache CXF contract-first example using OSGi blueprint.)

285: remote -> org.apache.camel.archetypes:camel-archetype-dataformat (Creates a new Camel data format.)

286: remote -> org.apache.camel.archetypes:camel-archetype-groovy (Creates a new Camel project using Groovy DSL.)

287: remote -> org.apache.camel.archetypes:camel-archetype-java (Creates a new Camel project using Java DSL.)

288: remote -> org.apache.camel.archetypes:camel-archetype-scala (Creates a new Camel project using Scala DSL.)

289: remote -> org.apache.camel.archetypes:camel-archetype-spring (Creates a new Camel project with added Spring DSL support.)

290: remote -> org.apache.camel.archetypes:camel-archetype-spring-dm (Creates a new Camel project with added Spring DSL support. Ready to be deployed in OSGi.)

291: remote -> org.apache.camel.archetypes:camel-archetype-war (-)

292: remote -> org.apache.camel.archetypes:camel-archetype-web (Creates a new Camel web project that deploys the Camel routes as a WAR)

293: remote -> org.apache.camel.archetypes:camel-archetype-webconsole (Creates a new Camel project that deploys the Camel Web Console, REST API, and your routes as a WAR)

294: remote -> org.apache.chemistry.opencmis:chemistry-opencmis-server-archetype (OpenCMIS Server Framework archetype)

295: remote -> org.apache.clerezza:internal.archetype (Generic archetype for clerezza projects)

296: remote -> org.apache.cocoon:cocoon-22-archetype-block (-)

297: remote -> org.apache.cocoon:cocoon-22-archetype-block-plain (-)

298: remote -> org.apache.cocoon:cocoon-22-archetype-webapp (-)

299: remote -> org.apache.cocoon.archetype-block:cocoon-archetype-block (-)

300: remote -> org.apache.cocoon.archetype-parent:cocoon-archetype-parent (-)

301: remote -> org.apache.cocoon.archetype-sample:cocoon-archetype-sample (-)

302: remote -> org.apache.cocoon.archetype-webapp:cocoon-archetype-webapp (-)

303: remote -> org.apache.crunch:crunch-archetype (Create a basic, self-contained job for Apache Crunch.)

304: remote -> org.apache.cxf:cxf-http-basic (-)

305: remote -> org.apache.cxf.archetype:cxf-jaxrs-service (Simple CXF JAX-RS webapp service using Spring configuration)

306: remote -> org.apache.cxf.archetype:cxf-jaxws-javafirst (Creates a project for developing a Web service starting from Java code)

307: remote -> org.apache.directmemory.server:server-example-archetype (-)

308: remote -> org.apache.directory.server:apacheds-schema-archetype (-)

309: remote -> org.apache.directory.server:apacheds-testcase-archetype (-)

310: remote -> org.apache.felix:maven-ipojo-plugin (Maven Plugin to package iPOJO-powered bundles.)

311: remote -> org.apache.geronimo.buildsupport:geronimo-archetype-testsuite (Plugin to help create a testsuite)

312: remote -> org.apache.geronimo.buildsupport:geronimo-assembly-archetype (-)

313: remote -> org.apache.geronimo.buildsupport:geronimo-plugin-archetype (-)

314: remote -> org.apache.geronimo.plugins:geronimo-archetype-testsuite (Plugin to help create a testsuite)

315: remote -> org.apache.geronimo.samples:geronimo-samples-archetype (Plugin to help create a samples project)

316: remote -> org.apache.isis:quickstart-archetype (-)

317: remote -> org.apache.isis.archetype:quickstart_wicket_restful_jdo-archetype (-)

318: remote -> org.apache.isis.archetype:simple_wicket_restful_jdo-archetype (-)

319: remote -> org.apache.karaf.archetypes:archetypes-command (-)

320: remote -> org.apache.karaf.archetypes:karaf-assembly-archetype (This archetype sets up an empty karaf assembly project.)

321: remote -> org.apache.karaf.archetypes:karaf-blueprint-archetype (An archetype for creating a simple blueprint bundle.)

322: remote -> org.apache.karaf.archetypes:karaf-bundle-archetype (A simple bundle archetype.)

323: remote -> org.apache.karaf.archetypes:karaf-command-archetype (A Karaf command archetype.)

324: remote -> org.apache.karaf.archetypes:karaf-feature-archetype (This archetype sets up an empty karaf features project.)

325: remote -> org.apache.karaf.archetypes:karaf-kar-archetype (This archetype sets up an empty karaf kar project.)

326: remote -> org.apache.karaf.eik.archetypes:eik-camel-archetype (Camel PDE plugin to be used in EIK)

327: remote -> org.apache.marmotta:marmotta-archetype-module (This Maven Archetype allows creating the basic structure for an Marmotta Module)

328: remote -> org.apache.marmotta:marmotta-archetype-webapp (Web Application bundle (WAR file) containing Apache Marmotta)

329: remote -> org.apache.maven.archetypes:maven-archetype-archetype (An archetype which contains a sample archetype.)

330: remote -> org.apache.maven.archetypes:maven-archetype-j2ee-simple (An archetype which contains a simplifed sample J2EE application.)

331: remote -> org.apache.maven.archetypes:maven-archetype-marmalade-mojo (-)

332: remote -> org.apache.maven.archetypes:maven-archetype-mojo (An archetype which contains a sample a sample Maven plugin.)

333: remote -> org.apache.maven.archetypes:maven-archetype-plugin (An archetype which contains a sample Maven plugin.)

334: remote -> org.apache.maven.archetypes:maven-archetype-plugin-site (An archetype which contains a sample Maven plugin site. This archetype can be layered upon an existing Maven plugin project.)

335: remote -> org.apache.maven.archetypes:maven-archetype-portlet (An archetype which contains a sample JSR-268 Portlet.)

336: remote -> org.apache.maven.archetypes:maven-archetype-profiles (-)

337: remote -> org.apache.maven.archetypes:maven-archetype-quickstart (An archetype which contains a sample Maven project.)

338: remote -> org.apache.maven.archetypes:maven-archetype-site (An archetype which contains a sample Maven site which demonstrates some of the supported document types like APT, XDoc, and FML and demonstrates how to i18n your site. This archetype can be layered upon an existing Maven project.)

339: remote -> org.apache.maven.archetypes:maven-archetype-site-simple (An archetype which contains a sample Maven site.)

340: remote -> org.apache.maven.archetypes:maven-archetype-webapp (An archetype which contains a sample Maven Webapp project.)

341: remote -> org.apache.myfaces.buildtools:myfaces-archetype-codi-jsf12 (Archetype to create a new JSF 1.2 webapp based on MyFaces CODI)

342: remote -> org.apache.myfaces.buildtools:myfaces-archetype-codi-jsf20 (Archetype to create a new JSF 2.0 webapp based on MyFaces CODI)

343: remote -> org.apache.myfaces.buildtools:myfaces-archetype-core-integration-test (Archetype to create a new MyFaces core project used for integration tests via cargo and HtmlUnit. Projects created via this archetype aim to test specific issues from the MyFaces core JIRA issue tracker and can be directly added to the MyFaces core integration-tests module.)

344: remote -> org.apache.myfaces.buildtools:myfaces-archetype-helloworld (Archetype to create a new webapp based on myfaces)

345: remote -> org.apache.myfaces.buildtools:myfaces-archetype-helloworld-facelets (Archetype to create a new webapp based on MyFaces and Facelets)

346: remote -> org.apache.myfaces.buildtools:myfaces-archetype-helloworld-portlets (Archetype to create a new portlet webapp based on myfaces)

347: remote -> org.apache.myfaces.buildtools:myfaces-archetype-helloworld20 (Archetype to create a new webapp based on MyFaces 2.0)

348: remote -> org.apache.myfaces.buildtools:myfaces-archetype-helloworld20-debug (Archetype to create a new webapp based on MyFaces 2.0, specially for debug issues)

349: remote -> org.apache.myfaces.buildtools:myfaces-archetype-helloworld20-owb (Archetype to create a new webapp based on MyFaces 2.0 with OpenWebBeans)

350: remote -> org.apache.myfaces.buildtools:myfaces-archetype-jsfcomponents (Archetype to create a libary project of JSF components)

351: remote -> org.apache.myfaces.buildtools:myfaces-archetype-jsfcomponents20 (Archetype to create a libary project of JSF 2.0 components)

352: remote -> org.apache.myfaces.buildtools:myfaces-archetype-trinidad (Archetype to create a new webapp based on Trinidad)

353: remote -> org.apache.myfaces.buildtools:myfaces-archetype-trinidad20 (Archetype to create a new webapp based on Trinidad and JSF 2.0)

354: remote -> org.apache.myfaces.trinidadbuild:myfaces-archetype-trinidad (Archetype to ease the burden of creating a new application based with Trinidad)

355: remote -> org.apache.npanday:maven-archetype-dotnet-simple (-)

356: remote -> org.apache.npanday:maven-archetype-netexecutable (-)

357: remote -> org.apache.npanday:maven-archetype-vb-simple (-)

358: remote -> org.apache.oodt:opsui-archetype (-)

359: remote -> org.apache.oodt:radix-archetype (-)

360: remote -> org.apache.openejb.maven:tomee-webapp-archetype (-)

361: remote -> org.apache.portals.jetspeed-2:application-archetype (Jetspeed-2 Maven2 Archetype used to generate portal application templates.)

362: remote -> org.apache.portals.jetspeed-2:component-archetype (Jetspeed-2 Maven2 Archetype used to generate component templates to be used by other components and applications.)

363: remote -> org.apache.portals.jetspeed-2:jetspeed-archetype (Jetspeed 2 Maven Archetype)

364: remote -> org.apache.portals.jetspeed-2:portal-archetype (Jetspeed-2 Maven2 Archetype used to generate portal instances.)

365: remote -> org.apache.portals.jetspeed-2:portal-component-archetype (Jetspeed-2 Maven2 Archetype used to generate component templates to be injected/installed as a library in the portal application itself.)

366: remote -> org.apache.portals.jetspeed-2:shared-component-archetype (Jetspeed-2 Maven2 Archetype used to generate component templates to be installed as a shared library for all portlet/web applications.)

367: remote -> org.apache.rave:rave-custom-project-archetype (An Archetype to create a custom Apache Rave project)

368: remote -> org.apache.servicemix.tooling:servicemix-bean-service-unit (-)

369: remote -> org.apache.servicemix.tooling:servicemix-binding-component (-)

370: remote -> org.apache.servicemix.tooling:servicemix-camel-osgi-bundle (-)

371: remote -> org.apache.servicemix.tooling:servicemix-camel-service-unit (-)

372: remote -> org.apache.servicemix.tooling:servicemix-cxf-bc-service-unit (-)

373: remote -> org.apache.servicemix.tooling:servicemix-cxf-code-first-osgi-bundle (-)

374: remote -> org.apache.servicemix.tooling:servicemix-cxf-se-service-unit (-)

375: remote -> org.apache.servicemix.tooling:servicemix-cxf-se-wsdl-first-service-unit (-)

376: remote -> org.apache.servicemix.tooling:servicemix-cxf-wsdl-first-osgi-bundle (-)

377: remote -> org.apache.servicemix.tooling:servicemix-drools-service-unit (-)

378: remote -> org.apache.servicemix.tooling:servicemix-eip-service-unit (-)

379: remote -> org.apache.servicemix.tooling:servicemix-embedded-simple (-)

380: remote -> org.apache.servicemix.tooling:servicemix-exec-service-unit (-)

381: remote -> org.apache.servicemix.tooling:servicemix-file-poller-service-unit (-)

382: remote -> org.apache.servicemix.tooling:servicemix-file-sender-service-unit (-)

383: remote -> org.apache.servicemix.tooling:servicemix-file-service-unit (-)

384: remote -> org.apache.servicemix.tooling:servicemix-ftp-poller-service-unit (-)

385: remote -> org.apache.servicemix.tooling:servicemix-ftp-sender-service-unit (-)

386: remote -> org.apache.servicemix.tooling:servicemix-ftp-service-unit (-)

387: remote -> org.apache.servicemix.tooling:servicemix-http-consumer-service-unit (-)

388: remote -> org.apache.servicemix.tooling:servicemix-http-provider-service-unit (-)

389: remote -> org.apache.servicemix.tooling:servicemix-http-service-unit (-)

390: remote -> org.apache.servicemix.tooling:servicemix-jms-consumer-service-unit (-)

391: remote -> org.apache.servicemix.tooling:servicemix-jms-provider-service-unit (-)

392: remote -> org.apache.servicemix.tooling:servicemix-jms-service-unit (-)

393: remote -> org.apache.servicemix.tooling:servicemix-jsr181-annotated-service-unit (-)

394: remote -> org.apache.servicemix.tooling:servicemix-jsr181-service-unit (-)

395: remote -> org.apache.servicemix.tooling:servicemix-jsr181-wsdl-first-service-unit (-)

396: remote -> org.apache.servicemix.tooling:servicemix-lwcontainer-service-unit (-)

397: remote -> org.apache.servicemix.tooling:servicemix-mail-service-unit (-)

398: remote -> org.apache.servicemix.tooling:servicemix-ode-service-unit (-)

399: remote -> org.apache.servicemix.tooling:servicemix-osgi-bundle (-)

400: remote -> org.apache.servicemix.tooling:servicemix-osworkflow-service-unit (-)

401: remote -> org.apache.servicemix.tooling:servicemix-project-root (-)

402: remote -> org.apache.servicemix.tooling:servicemix-quartz-service-unit (-)

403: remote -> org.apache.servicemix.tooling:servicemix-saxon-service-unit (-)

404: remote -> org.apache.servicemix.tooling:servicemix-saxon-xquery-service-unit (-)

405: remote -> org.apache.servicemix.tooling:servicemix-saxon-xslt-service-unit (-)

406: remote -> org.apache.servicemix.tooling:servicemix-script-service-unit (-)

407: remote -> org.apache.servicemix.tooling:servicemix-scripting-service-unit (-)

408: remote -> org.apache.servicemix.tooling:servicemix-service-assembly (-)

409: remote -> org.apache.servicemix.tooling:servicemix-service-engine (-)

410: remote -> org.apache.servicemix.tooling:servicemix-service-unit (-)

411: remote -> org.apache.servicemix.tooling:servicemix-shared-library (-)

412: remote -> org.apache.servicemix.tooling:servicemix-smpp-service-unit (-)

413: remote -> org.apache.servicemix.tooling:servicemix-snmp-service-unit (-)

414: remote -> org.apache.servicemix.tooling:servicemix-validation-service-unit (-)

415: remote -> org.apache.servicemix.tooling:servicemix-vfs-service-unit (-)

416: remote -> org.apache.servicemix.tooling:servicemix-xmpp-service-unit (-)

417: remote -> org.apache.shindig:sample-maven-archetype (Default server war dependencies)

418: remote -> org.apache.sling:sling-bundle-archetype (-)

419: remote -> org.apache.sling:sling-initial-content-archetype (Maven archetype for initial content)

420: remote -> org.apache.sling:sling-jcrinstall-bundle-archetype (-)

421: remote -> org.apache.sling:sling-launchpad-standalone-archetype (-)

422: remote -> org.apache.sling:sling-launchpad-webapp-archetype (-)

423: remote -> org.apache.sling:sling-servlet-archetype (Maven archetype for Sling Servlets)

424: remote -> org.apache.struts:struts2-archetype-angularjs (-)

425: remote -> org.apache.struts:struts2-archetype-blank (-)

426: remote -> org.apache.struts:struts2-archetype-convention (-)

427: remote -> org.apache.struts:struts2-archetype-dbportlet (-)

428: remote -> org.apache.struts:struts2-archetype-plugin (-)

429: remote -> org.apache.struts:struts2-archetype-portlet (-)

430: remote -> org.apache.struts:struts2-archetype-starter (-)

431: remote -> org.apache.synapse:synapse-package-archetype (This archetype can be used to create Maven projects that bundle a mediation into a standalone distribution ready to be executed)

432: remote -> org.apache.syncope:syncope-archetype (Apache Syncope Archetype)

433: remote -> org.apache.tapestry:quickstart (-)

434: remote -> org.apache.tapestry:tapestry-archetype (-)

435: remote -> org.apache.tapestry:tapestry-simple (Archetype for creating a basic Tapestry 5 application, including Eclipse control files.)

436: remote -> org.apache.tomcat.maven:tomcat-maven-archetype (-)

437: remote -> org.apache.turbine:turbine-webapp-2.3.3 (This archetype sets up a web application project based on Apache Turbine 2.3.3)

438: remote -> org.apache.turbine:turbine-webapp-4.0 (This archetype sets up a web application project based on Apache Turbine 4.0M1)

439: remote -> org.apache.tuscany.sca:tuscany-binding-archetype (Create a Tuscany binding extension project)

440: remote -> org.apache.tuscany.sca:tuscany-contribution-jar (Create an SCA JAR contribution project)

441: remote -> org.apache.tuscany.sca:tuscany-contribution-zip (Create an SCA ZIP contribution project)

442: remote -> org.apache.tuscany.sca:tuscany-policy-archetype (Create a Tuscany policy extension project)

443: remote -> org.apache.tuscany.sca:tuscany-quickstart (Create a simple Apache Tuscany SCA webapp project)

444: remote -> org.apache.tuscany.sca:tuscany-quickstart-bpel (Create an SCA Webapp project using BPEL)

445: remote -> org.apache.tuscany.sca:tuscany-quickstart-jsf (Create a Tuscany SCA and JSF project)

446: remote -> org.apache.tuscany.sca:tuscany-quickstart-jsonp (-)

447: remote -> org.apache.tuscany.sca:tuscany-quickstart-stripes (Create a simple Apache Tuscany SCA webapp project using the Stripes Web Framework)

448: remote -> org.apache.wicket:wicket-archetype-quickstart (-)

449: remote -> org.aperteworkflow:custom-widget-archetype (Aperte Workflow is a compilation of well-known, stable and mature frameworks into a complete BPM solution developed by BlueSoft sp. z o.o. - Polish independent software vendor. Project home page is available at http://www.aperteworkflow.org/)

450: remote -> org.apidesign.bck2brwsr:bck2brwsr-archetype-html-sample (Creates a skeletal HTML page and associated Java controller class. Runs in any browser (even without Java plugin) with the help of Bck2Brwsr virtual machine.)

451: remote -> org.apidesign.bck2brwsr:knockout4j-archetype (HTML page with Knockout.js bindings driven by application model written in Java. Use your favorite language to code. Use HTML as a lightweight rendering toolkit. Deploy using JavaFX or  bck2brwsr virtual machine.)

452: remote -> org.apidesign.bck2brwsr:mojo (-)

453: remote -> org.apidesign.html:knockout4j-archetype (HTML page with Knockout.js bindings driven by application model written in Java. Use your favorite language to code. Use HTML as a lightweight rendering toolkit. Deploy using JavaFX and  Java virtual machine.)

454: remote -> org.appfuse:appfuse-basic-jsf (Maven 2 archetype that creates a web application with AppFuse embedded in it.)

455: remote -> org.appfuse:appfuse-basic-spring (Maven 2 archetype that creates a web application with AppFuse embedded in it.)

456: remote -> org.appfuse:appfuse-basic-struts (Maven 2 archetype that creates a web application with AppFuse embedded in it.)

457: remote -> org.appfuse:appfuse-basic-tapestry (Maven 2 archetype that creates a web application with AppFuse embedded in it.)

458: remote -> org.appfuse:appfuse-core (Maven 2 archetype that creates a backend (Managers, DAOs and Web Services) application with AppFuse embedded in it.)

459: remote -> org.appfuse:appfuse-modular-jsf (Maven 2 archetype that creates a modular web application with AppFuse. This archetype creates two modules: "core" and "web". The core module depends on appfuse-service, while the web module depends on core as well as AppFuse's JSF implementation.)

460: remote -> org.appfuse:appfuse-modular-spring (Maven 2 archetype that creates a modular web application with AppFuse. This archetype creates two modules: "core" and "web". The core module depends on appfuse-service, while the web module depends on core as well as AppFuse's Spring MVC implementation.)

461: remote -> org.appfuse:appfuse-modular-struts (Maven 2 archetype that creates a modular web application with AppFuse. This archetype creates two modules: "core" and "web". The core module depends on appfuse-service, while the web module depends on core as well as AppFuse's Struts implementation.)

462: remote -> org.appfuse:appfuse-modular-tapestry (Maven 2 archetype that creates a modular web application with AppFuse. This archetype creates two modules: "core" and "web". The core module depends on appfuse-service, while the web module depends on core as well as AppFuse's Tapestry implementation.)

463: remote -> org.appfuse.archetypes:appfuse-basic-jsf (Maven 2 archetype that creates a web application with AppFuse embedded in it.)

464: remote -> org.appfuse.archetypes:appfuse-basic-jsf-archetype (AppFuse Archetype)

465: remote -> org.appfuse.archetypes:appfuse-basic-spring (Maven 2 archetype that creates a web application with AppFuse embedded in it.)

466: remote -> org.appfuse.archetypes:appfuse-basic-spring-archetype (AppFuse Archetype)

467: remote -> org.appfuse.archetypes:appfuse-basic-struts (Maven 2 archetype that creates a web application with AppFuse embedded in it.)

468: remote -> org.appfuse.archetypes:appfuse-basic-struts-archetype (AppFuse Archetype)

469: remote -> org.appfuse.archetypes:appfuse-basic-tapestry (Maven 2 archetype that creates a web application with AppFuse embedded in it.)

470: remote -> org.appfuse.archetypes:appfuse-basic-tapestry-archetype (AppFuse Archetype)

471: remote -> org.appfuse.archetypes:appfuse-basic-wicket-archetype (AppFuse Archetype)

472: remote -> org.appfuse.archetypes:appfuse-core (Maven 2 archetype that creates a backend (Managers, DAOs and Web Services) application with AppFuse embedded in it.)

473: remote -> org.appfuse.archetypes:appfuse-core-archetype (-)

474: remote -> org.appfuse.archetypes:appfuse-light-jsf-archetype (AppFuse Archetype)

475: remote -> org.appfuse.archetypes:appfuse-light-spring-archetype (AppFuse Archetype)

476: remote -> org.appfuse.archetypes:appfuse-light-spring-freemarker-archetype (AppFuse Archetype)

477: remote -> org.appfuse.archetypes:appfuse-light-spring-security-archetype (AppFuse Archetype)

478: remote -> org.appfuse.archetypes:appfuse-light-stripes-archetype (AppFuse Archetype)

479: remote -> org.appfuse.archetypes:appfuse-light-struts-archetype (AppFuse Archetype)

480: remote -> org.appfuse.archetypes:appfuse-light-tapestry-archetype (AppFuse Archetype)

481: remote -> org.appfuse.archetypes:appfuse-light-wicket-archetype (AppFuse Archetype)

482: remote -> org.appfuse.archetypes:appfuse-modular-jsf (Maven 2 archetype that creates a modular web application with AppFuse. This archetype creates two modules: "core" and "web". The core module depends on appfuse-service, while the web module depends on core as well as AppFuse's JSF implementation.)

483: remote -> org.appfuse.archetypes:appfuse-modular-jsf-archetype (AppFuse Archetype)

484: remote -> org.appfuse.archetypes:appfuse-modular-spring (Maven 2 archetype that creates a modular web application with AppFuse. This archetype creates two modules: "core" and "web". The core module depends on appfuse-service, while the web module depends on core as well as AppFuse's Spring MVC implementation.)

485: remote -> org.appfuse.archetypes:appfuse-modular-spring-archetype (AppFuse Archetype)

486: remote -> org.appfuse.archetypes:appfuse-modular-struts (Maven 2 archetype that creates a modular web application with AppFuse. This archetype creates two modules: "core" and "web". The core module depends on appfuse-service, while the web module depends on core as well as AppFuse's Struts implementation.)

487: remote -> org.appfuse.archetypes:appfuse-modular-struts-archetype (AppFuse Archetype)

488: remote -> org.appfuse.archetypes:appfuse-modular-tapestry (Maven 2 archetype that creates a modular web application with AppFuse. This archetype creates two modules: "core" and "web". The core module depends on appfuse-service, while the web module depends on core as well as AppFuse's Tapestry implementation.)

489: remote -> org.appfuse.archetypes:appfuse-modular-tapestry-archetype (AppFuse Archetype)

490: remote -> org.appfuse.archetypes:appfuse-modular-wicket-archetype (AppFuse Archetype)

491: remote -> org.appfuse.archetypes:appfuse-ws-archetype (-)

492: remote -> org.appverse.web.framework.archetypes.gwt:appverse-web-archetypes-gwt (Appverse Web Framework Archetypes GWT Archetype)

493: remote -> org.appverse.web.framework.archetypes.gwtproject:appverse-web-archetypes-gwtproject (Appverse Web Framework Tools Archetypes GWT Project)

494: remote -> org.appverse.web.framework.archetypes.jsf2:appverse-web-archetypes-jsf2 (Appverse Web Framework Archetypes JSF2 Archetype)

495: remote -> org.appverse.web.framework.tools.archetypes.gwtproject:appverse-web-tools-archetypes-gwtproject (Appverse Web Framework Tools Archetypes GWT Project)

496: remote -> org.atteo.moonshine:service-archetype (-)

497: remote -> org.atteo.moonshine:standalone-archetype (-)

498: remote -> org.bitbucket.bradleysmithllc.etlunit:etlunit-database-schema-archetype (-)

499: remote -> org.bitbucket.bradleysmithllc.etlunit:etlunit-feature-archetype (-)

500: remote -> org.bitbucket.bradleysmithllc.etlunit:etlunit-project-archetype (-)

501: remote -> org.bitbucket.bradleysmithllc.etlunit:feature-archetype (-)

502: remote -> org.bitbucket.bradleysmithllc.etlunit:project-archetype (-)

503: remote -> org.blueoxygen.cimande:cimande-archetype (-)

504: remote -> org.blueoxygen.cimande:cimande-archetype-blank (-)

505: remote -> org.boretti.drools.integration:drools4-integration-helper-archetype (Support of the archetype for the Maven plugin)

506: remote -> org.boretti.drools.integration:drools5-integration-helper-archetype (This is an Maven 2 Archetype to support creation of a ready to use Maven 2 project with Drools support. This archetype contains examples of code based on interface, classes and pre/post condition. JUnit 4 examples are also included.)

507: remote -> org.brillien:brillien-archetype (-)

508: remote -> org.broadleafcommerce:ecommerce-archetype (BroadleafCommerce ECommerce Archetype)

509: remote -> org.chtijbug.drools:drools-service-runner-archetype (-)

510: remote -> org.codehaus.cargo:cargo-archetype-daemon (Sample Maven archetype showing how to configure Cargo and Maven to generate a webapp and remotely start and stop a container with the application deployed on it.)

511: remote -> org.codehaus.cargo:cargo-archetype-remote-deployment (Sample Maven archetype showing how to configure Cargo and Maven to generate a webapp and deploy it to a remote container.)

512: remote -> org.codehaus.cargo:cargo-archetype-webapp-functional-tests-module (Sample Maven archetype showing how to configure Cargo and Maven to run functional tests for a webapp by creating a separate functional-tests module.)

513: remote -> org.codehaus.cargo:cargo-archetype-webapp-single-module (Sample Maven archetype showing how to configure Cargo and Maven to run functional tests directly from a single webapp module.)

514: remote -> org.codehaus.cargo:cargo-archetype-webapp-with-datasource (Sample Maven archetype showing how to configure Cargo and Maven to run functional tests directly from a webapp with datasource. Cargo will be used to configure the datasource on the container.)

515: remote -> org.codehaus.castor:castor-archetype-codegen-testcase (Maven archetype of a JUnit test case for the Castor XML code generator)

516: remote -> org.codehaus.castor:codegen-testcase (-)

517: remote -> org.codehaus.castor:cpa-testcase (-)

518: remote -> org.codehaus.enunciate.archetypes:enunciate-simple-archetype (-)

519: remote -> org.codehaus.gmaven.archetypes:gmaven-archetype-basic (-)

520: remote -> org.codehaus.gmaven.archetypes:gmaven-archetype-mojo (-)

521: remote -> org.codehaus.groovy.maven.archetypes:gmaven-archetype-basic (-)

522: remote -> org.codehaus.groovy.maven.archetypes:gmaven-archetype-mojo (-)

523: remote -> org.codehaus.mevenide.plugins:maven-archetype-nbm (Archetype for Netbeans Modules Maven setup)

524: remote -> org.codehaus.mojo:gwt-maven-plugin (Maven plugin for the Google Web Toolkit.)

525: remote -> org.codehaus.mojo:javascript-ria-archetype (A JavaScript Rich Internet Application template using jQuery and jQuery UI.)

526: remote -> org.codehaus.mojo:latex-maven-archetype (-)

527: remote -> org.codehaus.mojo:xmlbeans-maven-plugin (Runs the xmlbeans parser/code generator against schemas in files and dependent jars.)

528: remote -> org.codehaus.mojo.archetypes:appclient-javaee6 (-)

529: remote -> org.codehaus.mojo.archetypes:appclient-javaee7 (Archetype for an Application Client package using Java EE 7.)

530: remote -> org.codehaus.mojo.archetypes:appclient-jee5 (-)

531: remote -> org.codehaus.mojo.archetypes:appframework (Archetype for creating application based on JSR 296)

532: remote -> org.codehaus.mojo.archetypes:ear-j2ee14 (-)

533: remote -> org.codehaus.mojo.archetypes:ear-javaee6 (-)

534: remote -> org.codehaus.mojo.archetypes:ear-javaee7 (Archetype for EAR package using Java EE 7)

535: remote -> org.codehaus.mojo.archetypes:ear-jee5 (-)

536: remote -> org.codehaus.mojo.archetypes:ejb-j2ee13 (-)

537: remote -> org.codehaus.mojo.archetypes:ejb-j2ee14 (-)

538: remote -> org.codehaus.mojo.archetypes:ejb-javaee6 (-)

539: remote -> org.codehaus.mojo.archetypes:ejb-javaee7 (Archetype for an EJB package using Java EE 7.)

540: remote -> org.codehaus.mojo.archetypes:ejb-jee5 (-)

541: remote -> org.codehaus.mojo.archetypes:javafx (Archetype for creating a JavaFX application)

542: remote -> org.codehaus.mojo.archetypes:nbm-archetype (Archetype for development of NetBeans modules in Maven.)

543: remote -> org.codehaus.mojo.archetypes:nbm-osgi-archetype (Archetype for development of NetBeans modules that can depend on OSGi bundles.)

544: remote -> org.codehaus.mojo.archetypes:nbm-suite-root (Root project archetype for creating multi module projects developing NetBeans IDE modules. Approximately similar in functionality to module suites in NetBeans Ant projects.)

545: remote -> org.codehaus.mojo.archetypes:netbeans-platform-app-archetype (Archetype for sample application based on NetBeans Platform. Creates parent POM with branding and empty NBM project.)

546: remote -> org.codehaus.mojo.archetypes:osgi-archetype (Archetype for development of OSGi bundles using Apache Felix Maven plugin)

547: remote -> org.codehaus.mojo.archetypes:pom-root (Root project archetype for creating multi module projects)

548: remote -> org.codehaus.mojo.archetypes:sample-javafx (Sample archetype for creating a JavaFX application)

549: remote -> org.codehaus.mojo.archetypes:webapp-j2ee13 (-)

550: remote -> org.codehaus.mojo.archetypes:webapp-j2ee14 (-)

551: remote -> org.codehaus.mojo.archetypes:webapp-javaee6 (-)

552: remote -> org.codehaus.mojo.archetypes:webapp-javaee7 (Archetype for a web application using Java EE 7.)

553: remote -> org.codehaus.mojo.archetypes:webapp-jee5 (-)

554: remote -> org.codehaus.mojo.groovy:groovy-maven-archetype (An archetype for creating Maven modules/projects using the Groovy language.)

555: remote -> org.codehaus.mojo.groovy:groovy-mojo-archetype (An archetype for writing Maven 2 plugins in the Groovy language.)

556: remote -> org.codehaus.openxma:org.openxma.dsl.sample-archetype (-)

557: remote -> org.codehaus.sonar.archetypes:sonar-basic-plugin-archetype (Maven archetype to create a basic Sonar plugin)

558: remote -> org.codehaus.sonar.archetypes:sonar-gwt-plugin-archetype (Maven archetype to create a Sonar plugin including GWT pages)

559: remote -> org.codelibs:elasticsearch-plugin-archetype (This archetype generates your project for Elasticsearch plugin.)

560: remote -> org.cometd.archetypes:cometd-archetype-dojo-jetty6 (-)

561: remote -> org.cometd.archetypes:cometd-archetype-dojo-jetty7 (-)

562: remote -> org.cometd.archetypes:cometd-archetype-dojo-jetty8 (-)

563: remote -> org.cometd.archetypes:cometd-archetype-dojo-jetty9 (-)

564: remote -> org.cometd.archetypes:cometd-archetype-jquery-jetty6 (-)

565: remote -> org.cometd.archetypes:cometd-archetype-jquery-jetty7 (-)

566: remote -> org.cometd.archetypes:cometd-archetype-jquery-jetty8 (-)

567: remote -> org.cometd.archetypes:cometd-archetype-jquery-jetty9 (-)

568: remote -> org.cometd.archetypes:cometd-archetype-spring-dojo-jetty7 (-)

569: remote -> org.cometd.archetypes:cometd-archetype-spring-dojo-jetty9 (-)

570: remote -> org.cometd.archetypes:cometd-archetype-spring-jquery-jetty7 (-)

571: remote -> org.cometd.archetypes:cometd-archetype-spring-jquery-jetty9 (-)

572: remote -> org.conventionsframework:conventions-archetype (-)

573: remote -> org.coosproject.maven.archetypes:coos-plugin-actor (-)

574: remote -> org.coosproject.maven.archetypes:coos-plugin-api (-)

575: remote -> org.coosproject.maven.archetypes:coos-plugin-noapi (-)

576: remote -> org.debux.webmotion:webmotion-archetype (WebMotion is Java web framework based on the Java EE6 standard)

577: remote -> org.devnull:devnull-web-archetype (DevNull starter webaapp with Spring MVC, JPA, Groovy and Twitter Bootstrap)

578: remote -> org.dishevelled:dsh-archetype (dishevelled.org maven project archetype.)

579: remote -> org.drombler.fx:drombler-fx-maven-archetype-application (-)

580: remote -> org.duelengine:duel-mvc-archetype (MVC project archetype using Jersey, Guice, DUEL views, DUEL merge)

581: remote -> org.duelengine:war-bootstrap-archetype (Simple WAR bootstrap for quick & dirty testing in multiple servlet containers (Tomcat, Jetty, Glassfish).)

582: remote -> org.eclipse.hudson.tools:maven-hpi-plugin (Support for developing Hudson plugins with Apache Maven.)

583: remote -> org.eclipse.xtend:xtend-android-archetype (-)

584: remote -> org.eclipse.xtend:xtend-archetype (-)

585: remote -> org.eiichiro.gig:gig-archetype-appengine (An archetype which contains a simple Gig Webapp project for Google App Engine.)

586: remote -> org.eiichiro.gig:gig-archetype-heroku (An archetype which contains a simple Gig Webapp project for Heroku.)

587: remote -> org.eiichiro.gig:gig-archetype-webapp (An archetype which contains a simple Gig Webapp project.)

588: remote -> org.entando.entando:entando-archetype-bundle-content (Content Bundle Archetype for Entando.)

589: remote -> org.entando.entando:entando-archetype-bundle-misc (Generic Misc Bundle Archetype for Entando.)

590: remote -> org.entando.entando:entando-archetype-bundle-page-generic (Generic Page Bundle Archetype for Entando.)

591: remote -> org.entando.entando:entando-archetype-bundle-showlet-generic (Generic Showlet Bundle Archetype for Entando.)

592: remote -> org.entando.entando:entando-archetype-bundle-widget-generic (Generic Widget Bundle Archetype for Entando.)

593: remote -> org.entando.entando:entando-archetype-plugin-generic (Generic Plugin Archetype for Entando:  an agile, modern and user-centric open source portal-like platform.)

594: remote -> org.entando.entando:entando-archetype-portal-bootstrap (Twitter Bootstrap Portal Archetype for Entando: an agile, modern and user-centric open source portal-like platform.)

595: remote -> org.entando.entando:entando-archetype-portal-generic (Generic Portal Archetype for Entando: an agile, modern and user-centric open source portal-like platform.)

596: remote -> org.fluttercode.knappsack:jee6-basic-archetype (-)

597: remote -> org.fluttercode.knappsack:jee6-minimal-archetype (-)

598: remote -> org.fluttercode.knappsack:jee6-sandbox-archetype (-)

599: remote -> org.fluttercode.knappsack:jee6-sandbox-demo-archetype (-)

600: remote -> org.fluttercode.knappsack:jee6-servlet-basic-archetype (-)

601: remote -> org.fluttercode.knappsack:jee6-servlet-demo-archetype (-)

602: remote -> org.fluttercode.knappsack:jee6-servlet-minimal-archetype (-)

603: remote -> org.fluttercode.knappsack:jee6-servlet-sandbox-archetype (-)

604: remote -> org.fluttercode.knappsack:spring-jsf-jpa-archetype (-)

605: remote -> org.fluttercode.knappsack:spring-mvc-jpa-archetype (-)

606: remote -> org.fluttercode.knappsack:spring-mvc-jpa-demo-archetype (-)

607: remote -> org.fuin.archetypes:emt-xtext-archetype (Maven archetype that creates an Xtext project with a multi module Maven layout and Tycho (manifest-first approach).)

608: remote -> org.fusesource.fabric:camel-cxf-code-first-archetype (Creates a new Camel project using CXF in code (Java) first.)

609: remote -> org.fusesource.fabric:camel-cxf-contract-first-archetype (Creates a new Camel project using CXF in contract (WSDL) first.)

610: remote -> org.fusesource.fabric:camel-drools-archetype (Creates a new Camel project using the Drools rule engine.)

611: remote -> org.fusesource.scalate.tooling:scalate-archetype-empty (An archetype which creates an empty Scalate web application)

612: remote -> org.fusesource.scalate.tooling:scalate-archetype-guice (An archetype which creates an empty Scalate Guice web application)

613: remote -> org.fusesource.scalate.tooling:scalate-archetype-guice_2.10 (An archetype which creates an empty Scalate Guice web application)

614: remote -> org.fusesource.scalate.tooling:scalate-archetype-guice_2.9 (An archetype which creates an empty Scalate Guice web application)

615: remote -> org.fusesource.scalate.tooling:scalate-archetype-jersey (An archetype which creates an empty Scalate web application)

616: remote -> org.fusesource.scalate.tooling:scalate-archetype-jersey_2.10 (An archetype which creates an empty Scalate web application)

617: remote -> org.fusesource.scalate.tooling:scalate-archetype-jersey_2.9 (An archetype which creates an empty Scalate web application)

618: remote -> org.fusesource.scalate.tooling:scalate-archetype-sitegen (An archetype which creates an empty Scalate static website generation project)

619: remote -> org.fusesource.scalate.tooling:scalate-archetype-sitegen_2.10 (An archetype which creates an empty Scalate static website generation project)

620: remote -> org.fusesource.scalate.tooling:scalate-archetype-sitegen_2.9 (An archetype which creates an empty Scalate static website generation project)

621: remote -> org.geomajas:geomajas-gwt-archetype (Geomajas GWT application archetype)

622: remote -> org.geomajas:geomajas-plugin-archetype (-)

623: remote -> org.geoserver.maven:geoserver-archetype-wfsoutputformat (-)

624: remote -> org.glassfish.jersey.archetypes:jersey-heroku-webapp (An archetype which contains a quick start Jersey-based web application project capable to run on Heroku.)

625: remote -> org.glassfish.jersey.archetypes:jersey-quickstart-grizzly2 (An archetype which contains a quick start Jersey project based on Grizzly container.)

626: remote -> org.glassfish.jersey.archetypes:jersey-quickstart-webapp (An archetype which contains a quick start Jersey-based web application project.)

627: remote -> org.grails:grails-maven-archetype (Maven archetype for Grails projects.)

628: remote -> org.graniteds.archetypes:graniteds-flex-spring-jpa-hibernate (Base project with Flex 4.6, Spring 3 and Hibernate using GraniteDS with RemoteObject API.)

629: remote -> org.graniteds.archetypes:graniteds-spring-jpa-hibernate (Base project with Flex 4.5, Spring 3 and Hibernate using GraniteDS with RemoteObject API.)

630: remote -> org.graniteds.archetypes:graniteds-tide-cdi-jpa (Base project with Flex 4.5 and CDI using GraniteDS with the Tide API.)

631: remote -> org.graniteds.archetypes:graniteds-tide-flex-cdi-jpa (Base project with Flex 4.6, CDI and JPA using GraniteDS with Tide API.)

632: remote -> org.graniteds.archetypes:graniteds-tide-flex-seam-jpa-hibernate (Base project with Flex 4.6, JBoss Seam 2.2 and Hibernate using GraniteDS with the Tide API.)

633: remote -> org.graniteds.archetypes:graniteds-tide-flex-spring-jpa-hibernate (Base project with Flex 4.6, Spring 3.1 and Hibernate 3.6 using GraniteDS with the Tide API.)

634: remote -> org.graniteds.archetypes:graniteds-tide-javafx-spring-jpa-hibernate (Base project with JavaFX 2.2, Spring 3.1 and Hibernate 3.6 using GraniteDS with the Tide API.)

635: remote -> org.graniteds.archetypes:graniteds-tide-seam-jpa-hibernate (Base project with Flex 4.5, JBoss Seam 2.2 and Hibernate using GraniteDS with the Tide API.)

636: remote -> org.graniteds.archetypes:graniteds-tide-spring-jpa-hibernate (Base project with Flex 4.5, Spring 3 and Hibernate using GraniteDS with the Tide API.)

637: remote -> org.grouplens.lenskit:lenskit-archetype-fancy-analysis (-)

638: remote -> org.grouplens.lenskit:lenskit-archetype-simple-analysis (-)

639: remote -> org.hibernate:hibernate-search-quickstart (-)

640: remote -> org.hibernate:hibernate-validator-quickstart-archetype (Aggregator of the Hibernate Validator modules.)

641: remote -> org.imixs.application:imixs-workflow-jee-archetype (Imixs Workflow JEE Archetype provides a JEE Sample Application)

642: remote -> org.jasig.portlet.archetype:jsr286-archetype (-)

643: remote -> org.jbehave:jbehave-groovy-archetype (An archetype to run multiple textual stories with steps classes written in Groovy.)

644: remote -> org.jbehave:jbehave-guice-archetype (An archetype to run multiple textual stories configured programmatically but with steps classes composed using Guice.)

645: remote -> org.jbehave:jbehave-needle-archetype (An archetype to run multiple textual stories configured programmatically but with steps classes composed using Needle.)

646: remote -> org.jbehave:jbehave-pico-archetype (An archetype to run multiple textual stories configured programmatically but with steps classes composed using Pico.)

647: remote -> org.jbehave:jbehave-simple-archetype (An archetype to run multiple textual stories configured programmatically.)

648: remote -> org.jbehave:jbehave-spring-archetype (An archetype to run multiple textual stories configured programmatically but with steps classes composed using Spring.)

649: remote -> org.jbehave.web:jbehave-web-selenium-flash-archetype (An archetype to run web Flash stories using Selenium.)

650: remote -> org.jbehave.web:jbehave-web-selenium-groovy-pico-archetype (An archetype to run web stories using Selenium, Groovy and Pico.)

651: remote -> org.jbehave.web:jbehave-web-selenium-java-spring-archetype (An archetype to run web stories using Selenium, Java and Spring.)

652: remote -> org.jboss.aerogear.archetypes:jboss-html5-mobile-archetype (An archetype that generates a Java EE 6 application using HTML5, and JAX-RS to support both desktop and mobile web browsers)

653: remote -> org.jboss.aerogear.archetypes:jboss-html5-mobile-blank-archetype (An archetype that generates a Java EE 6 application using HTML5, and JAX-RS to support both desktop and mobile web browsers)

654: remote -> org.jboss.archetype.wfk:jboss-html5-mobile-archetype (An archetype that generates a Java EE 6 application using HTML5, and JAX-RS to support both desktop and mobile web browsers)

655: remote -> org.jboss.archetype.wfk:jboss-html5-mobile-blank-archetype (An archetype that generates a Java EE 6 application using HTML5, and JAX-RS to support both desktop and mobile web browsers)

656: remote -> org.jboss.as.archetypes:jboss-as-subsystem (An archetype that generates a skeleton project for implementing a JBoss AS 7 subsystem)

657: remote -> org.jboss.errai.archetypes:bus-quickstart (-)

658: remote -> org.jboss.errai.archetypes:cdi-quickstart (-)

659: remote -> org.jboss.errai.archetypes:cordova-quickstart (-)

660: remote -> org.jboss.errai.archetypes:jaxrs-quickstart (-)

661: remote -> org.jboss.errai.archetypes:jboss-errai-kitchensink-archetype (A starter Errai + Java EE 6 webapp project for use on JBoss AS 7 / EAP 6, generated from the jboss-errai-kitchensink-archetype archetype)

662: remote -> org.jboss.errai.archetypes:kitchensink-quickstart (A starter Errai + Java EE 6 webapp project for use on JBoss AS 7 / EAP 6, generated from the kitchensink-quickstart archetype)

663: remote -> org.jboss.maven.archetypes:selenium-testng (-)

664: remote -> org.jboss.portletbridge.archetypes:1.2-basic (-)

665: remote -> org.jboss.portletbridge.archetypes:2.0-basic (-)

666: remote -> org.jboss.portletbridge.archetypes:2.0-basic-archetype (-)

667: remote -> org.jboss.portletbridge.archetypes:jsf2-basic-archetype (-)

668: remote -> org.jboss.portletbridge.archetypes:richfaces-basic (-)

669: remote -> org.jboss.portletbridge.archetypes:richfaces-simpleapp-archetype (-)

670: remote -> org.jboss.portletbridge.archetypes:seam-basic (-)

671: remote -> org.jboss.spec.archetypes:jboss-html5-mobile-archetype (An archetype that generates a Java EE 6 application using HTML5, and JAX-RS to support both desktop and mobile web browsers)

672: remote -> org.jboss.spec.archetypes:jboss-javaee6-ear-webapp (An archetype that generates a starter Java EE 6 webapp project for JBoss AS 7. The project is an EAR, with an EJB-JAR and WAR)

673: remote -> org.jboss.spec.archetypes:jboss-javaee6-webapp (An archetype that generates a starter Java EE 6 webapp project for JBoss AS 7)

674: remote -> org.jboss.spec.archetypes:jboss-javaee6-webapp-archetype (An archetype that generates a starter Java EE 6 webapp project for JBoss AS 7.1 (by default) or EAP 6 (if the "enterprise" property is true))

675: remote -> org.jboss.spec.archetypes:jboss-javaee6-webapp-archetype-blank (An archetype that generates a starter Java EE 6 webapp project for JBoss AS 7 (by default) or EAP 6 (if the "enterprise" property is true))

676: remote -> org.jboss.spec.archetypes:jboss-javaee6-webapp-blank-archetype (An archetype that generates a starter Java EE 6 webapp project for JBoss AS 7.1 (by default) or EAP 6 (if the "enterprise" property is true))

677: remote -> org.jboss.spec.archetypes:jboss-javaee6-webapp-ear-archetype (An archetype that generates a starter Java EE 6 webapp project for JBoss AS 7.1 (by default) or EAP 6 (if the "enterprise" property is true). The project is an EAR, with an EJB-JAR and WAR)

678: remote -> org.jboss.spec.archetypes:jboss-javaee6-webapp-ear-archetype-blank (An archetype that generates a starter Java EE 6 webapp project for JBoss AS 7 (by default) or EAP 6 (if the "enterprise" property is true). The project is an EAR, with an EJB-JAR and WAR)

679: remote -> org.jboss.spec.archetypes:jboss-javaee6-webapp-ear-blank-archetype (An archetype that generates a starter Java EE 6 webapp project for JBoss AS 7.1 (by default) or EAP 6 (if the "enterprise" property is true). The project is an EAR, with an EJB-JAR and WAR)

680: remote -> org.jboss.spring.archetypes:jboss-spring-mvc-archetype (An archetype that generates a starter Spring MVC application with Java EE persistence settings (server bootstrapped JPA, JTA transaction management) for JBoss AS7)

681: remote -> org.jboss.spring.archetypes:spring-mvc-webapp (An archetype that generates a starter Spring MVC application with Java EE persistence settings (server bootstrapped JPA, JTA transaction management) for JBoss AS7)

682: remote -> org.jboss.weld.archetypes:jboss-javaee6-webapp (-)

683: remote -> org.jboss.weld.archetypes:jboss-jsf-weld-servlet-webapp (-)

684: remote -> org.jboss.weld.archetypes:weld-jsf-jee (Weld archetype for creating a Java EE 6 application using JSF 2.0, CDI 1.0, EJB 3.1 and JPA 2.0 (persistence unit included))

685: remote -> org.jboss.weld.archetypes:weld-jsf-jee-minimal (Weld archetype for creating a minimal Java EE 6 application using JSF 2.0, CDI 1.0 and EJB 3.1 (persistence unit not included))

686: remote -> org.jboss.weld.archetypes:weld-jsf-servlet-minimal (Weld archetype for creating an application using JSF 2.0 and CDI 1.0 for Servlet Containers (Tomcat 6 / Jetty 6))

687: remote -> org.jbpm:jbpm-console-ng-module-archetype (jBPM Console NG Module Archetype)

688: remote -> org.jbundle.app.tools:jbundle-project-archetype (jbundle project archetype)

689: remote -> org.jbundle.config:org.jbundle.config.archetype (-)

690: remote -> org.jbundle.util.webapp:jbundle-util-webapp-cgi-archetype (-)

691: remote -> org.jbundle.util.webapp:jbundle-util-webapp-files-archetype (-)

692: remote -> org.jbundle.util.webapp:jbundle-util-webapp-proxy-archetype (-)

693: remote -> org.jbundle.util.webapp:jbundle-util-webapp-redirect-archetype (-)

694: remote -> org.jbundle.util.webapp:jbundle-util-webapp-upload-archetype (-)

695: remote -> org.jbundle.util.webapp:jbundle-util-webapp-webdav-archetype (-)

696: remote -> org.jbundle.util.webapp:jbundle-util-webapp-website-archetype (-)

697: remote -> org.jbundle.util.webapp:jbundle-util-webapp-webstart-archetype (-)

698: remote -> org.jbundle.util.webapp:jbundle-util-webapp-webstart-reactor-archetype (-)

699: remote -> org.jbundle.util.webapp:org.jbundle.util.webapp.cgi-archetype (-)

700: remote -> org.jbundle.util.webapp:org.jbundle.util.webapp.files-archetype (-)

701: remote -> org.jbundle.util.webapp:org.jbundle.util.webapp.proxy-archetype (-)

702: remote -> org.jbundle.util.webapp:org.jbundle.util.webapp.redirect-archetype (-)

703: remote -> org.jbundle.util.webapp:org.jbundle.util.webapp.upload-archetype (-)

704: remote -> org.jbundle.util.webapp:org.jbundle.util.webapp.webdav-archetype (-)

705: remote -> org.jbundle.util.webapp:org.jbundle.util.webapp.website-archetype (-)

706: remote -> org.jclouds:jclouds-compute-service-archetype (Maven archetype for a provider of a Compute service)

707: remote -> org.jclouds:jclouds-rest-client-archetype (Maven archetype for a provider of a rest-speaking service)

708: remote -> org.jibx.ota.osgi:jibx-ota-osgi-archetype (-)

709: remote -> org.jibx.schema.config:opentravel-ws-archetype (-)

710: remote -> org.jibx.schema.org.opentravel._2010B:opentravel-archetype (-)

711: remote -> org.jibx.schema.org.opentravel._2011A:opentravel-archetype (-)

712: remote -> org.jibx.schema.org.opentravel._2011B:opentravel-archetype (-)

713: remote -> org.jibx.schema.org.opentravel._2011B.ws:opentravel-touractivity-ws-archetype (-)

714: remote -> org.jibx.schema.org.opentravel._2011B.ws:opentravel-touractivity-ws-service-archetype (-)

715: remote -> org.jibx.schema.org.opentravel._2012A:opentravel-archetype (-)

716: remote -> org.jibx.schema.org.opentravel._2012A.ws:opentravel-touractivity-ws-service-archetype (-)

717: remote -> org.jibx.schema.org.opentravel._2012B:opentravel-archetype (-)

718: remote -> org.jibx.schema.org.opentravel._2012B.ws:opentravel-touractivity-ws-service-archetype (-)

719: remote -> org.jibx.schema.org.opentravel._2013A:opentravel-archetype (-)

720: remote -> org.jibx.schema.org.opentravel._2013A.ws:opentravel-touractivity-ws-service-archetype (-)

721: remote -> org.jini.maven-jini-plugin:jini-service-archetype (Archetype for Jini service project creation)

722: remote -> org.jnario:jnario-archetype (Maven archetype for setting up a jnario project.)

723: remote -> org.juzu:juzu-archetype (-)

724: remote -> org.jvnet.hudson.tools:maven-hpi-plugin (Support for developing Hudson plugins with Apache Maven.)

725: remote -> org.kuali.rice:rice-archetype-quickstart (This is a archetype which creates a Kuali Rice based application. It uses a basic project structure demonstrating war overlays, service implementation, unit and integration testing.  It is configured in a bundled integration model with Kuali Rice.)

726: remote -> org.kualigan.maven.archetypes:kc-archetype (-)

727: remote -> org.kualigan.maven.archetypes:kfs-archetype (-)

728: remote -> org.kualigan.maven.archetypes:kfs3-archetype (-)

729: remote -> org.kualigan.maven.archetypes:kfs4-archetype (-)

730: remote -> org.kualigan.maven.archetypes:kr-archetype (-)

731: remote -> org.kualigan.maven.archetypes:lb-copy-archetype (Archetype used when copying databases. Creates a database project for the lb-maven-project to use in copying/exporting a database)

732: remote -> org.makumba:makumba-archetype (Archetype for a makumba web-application)

733: remote -> org.meruvian.midas:midas-archetype-blank (Generates blank Midas project template)

734: remote -> org.meruvian.yama:yama-archetype (-)

735: remote -> org.meruvian.yama:yama-jaxrs-archetype (-)

736: remote -> org.meruvian.yama:yama-struts-archetype (-)

737: remote -> org.mixer2:mixer2-springmvc-archetype (archetype for SpringMVC web application with mixer2)

738: remote -> org.mobicents.servlet.sip.archetypes:maven-archetype-sipapp (Archetype providing a default layout to start building SIP Servlets Applications.)

739: remote -> org.mobicents.servlet.sip.archetypes:mss-testing-embeddedTomcat6-archetype (-)

740: remote -> org.mobicents.servlet.sip.archetypes:mss-testing-embeddedTomcat7-archetype (-)

741: remote -> org.mortbay.jetty.archetype:jetty-archetype-assembler (-)

742: remote -> org.mortbay.jetty.archetype:jetty-archetype-fileserver (-)

743: remote -> org.mule.ibeans:ibean-archetype (An archetype for creating an empty ibean maven project)

744: remote -> org.mule.tools:ibean-archetype (-)

745: remote -> org.mule.tools:mule-catalog-archetype (-)

746: remote -> org.mule.tools:mule-cloud-connector-archetype (-)

747: remote -> org.mule.tools:mule-example-archetype (An archetype for creating a Mule example application.)

748: remote -> org.mule.tools:mule-module-archetype (An architype for creating a Mule Module. It provides options for adding certain mule features and configuring the module for Muleforge.)

749: remote -> org.mule.tools:mule-project-archetype (An architype for creating Mule applications.)

750: remote -> org.mule.tools:mule-transport-archetype (Archetype for Mule 2.0 and above transport projects.)

751: remote -> org.multiverse:multiverse-project-archetype (Skeleton for a project using Multiverse)

752: remote -> org.nakedobjects:application-archetype (-)

753: remote -> org.nakedobjects:remoting-support (-)

754: remote -> org.nakedobjects.archetypes:application (-)

755: remote -> org.nakedobjects.plugins:hibernate-support (-)

756: remote -> org.nakedobjects.plugins:html-war (-)

757: remote -> org.nakedobjects.plugins:htmlviewer-war (-)

758: remote -> org.nakedobjects.prototyping:application (-)

759: remote -> org.nakedobjects.prototyping:icons (-)

760: remote -> org.nakedosgi:bundle-archetype (-)

761: remote -> org.ninjaframework:ninja-appengine-blog-archetype (Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/)

762: remote -> org.ninjaframework:ninja-core-demo-archetype (-)

763: remote -> org.ninjaframework:ninja-jpa-demo-archetype (-)

764: remote -> org.ninjaframework:ninja-servlet-jpa-blog-archetype (-)

765: remote -> org.ninjaframework:ninja-servlet-jpa-blog-integration-test-archetype (-)

766: remote -> org.objectweb.fractal.cecilia:maven-archetype-cecilia-app (This archetype is useful to quick start Cecilia applications, having a source tree template already filled.)

767: remote -> org.objectweb.fractal.cecilia:maven-archetype-cecilia-application (This archetype is useful to quick start Cecilia applications, having a source tree template already filled.)

768: remote -> org.objectweb.fractal.cecilia:maven-archetype-cecilia-library (This archetype is useful to quick start Cecilia components library projects, having a source tree template already filled.)

769: remote -> org.objectweb.petals:maven-archetype-petals-jbi-binding-component (>This project is Maven 2 archetype associated to a JBI binding component project.)

770: remote -> org.objectweb.petals:maven-archetype-petals-jbi-service-assembly (This project is Maven 2 archetype associated to a JBI service assembly project.)

771: remote -> org.objectweb.petals:maven-archetype-petals-jbi-service-engine (This project is Maven 2 archetype associated to a JBI service engine project.)

772: remote -> org.objectweb.petals:maven-archetype-petals-jbi-service-unit (This project is Maven 2 archetype associated to a JBI service unit project.)

773: remote -> org.opencoweb:admin-archetype (-)

774: remote -> org.opencoweb:coweb-archetype (-)

775: remote -> org.openengsb.tooling.archetypes:openengsb-tooling-archetypes-connector (Archetype to produce new Connector project)

776: remote -> org.openengsb.tooling.archetypes:openengsb-tooling-archetypes-domain (Archetype to produce new Domain project)

777: remote -> org.openengsb.tooling.archetypes:org.openengsb.tooling.archetypes.connector (Archetype to produce new Connector project)

778: remote -> org.openengsb.tooling.archetypes:org.openengsb.tooling.archetypes.domain (Archetype to produce new Domain project)

779: remote -> org.openengsb.tooling.archetypes.clientproject:org.openengsb.tooling.archetypes.clientproject.root (Archetype to produce new client project)

780: remote -> org.openjdk.jmh:jmh-simple-benchmark-archetype (Basic archetype for simple JMH-driven benchmark.)

781: remote -> org.openl.rules:openl-simple-project (-)

782: remote -> org.openl.rules:openl-simple-project-archetype (-)

783: remote -> org.ops4j.pax.construct:maven-archetype-osgi-bundle (-)

784: remote -> org.ops4j.pax.construct:maven-archetype-osgi-project (-)

785: remote -> org.ops4j.pax.construct:maven-archetype-osgi-service (-)

786: remote -> org.ops4j.pax.construct:maven-archetype-osgi-wrapper (-)

787: remote -> org.ops4j.pax.construct:maven-archetype-spring-bean (-)

788: remote -> org.ops4j.pax.exam:maven-archetype-paxexam-junit ()

789: remote -> org.ops4j.pax.web.archetypes:wab-archetype (-)

790: remote -> org.ops4j.pax.web.archetypes:wab-gwt-archetype (-)

791: remote -> org.ops4j.pax.web.archetypes:war-archetype (-)

792: remote -> org.ow2.jasmine.kerneos:kerneos-module-archetype (-)

793: remote -> org.ow2.jasmine.kerneos:kerneos-war-archetype (-)

794: remote -> org.ow2.jasmine.probe:jprobe-collector-archetype (-)

795: remote -> org.ow2.jasmine.probe:jprobe-outer-archetype (-)

796: remote -> org.ow2.jonas.camel:camel-archetype-simple-route (-)

797: remote -> org.ow2.kerneos:kerneos-application-archetype (-)

798: remote -> org.ow2.kerneos:kerneos-flex-archetypes-application (-)

799: remote -> org.ow2.kerneos:kerneos-flex-archetypes-module (-)

800: remote -> org.ow2.kerneos:kerneos-flex-archetypes-module-fragment (-)

801: remote -> org.ow2.kerneos:kerneos-module-archetype (-)

802: remote -> org.ow2.orchestra:orchestra-extension-archetype (Generates extensions for Orchestra)

803: remote -> org.ow2.petals:maven-archetype-petals-jbi-binding-component (This project is Maven 2 archetype associated to a JBI binding component project.)

804: remote -> org.ow2.petals:maven-archetype-petals-jbi-service-assembly (This project is Maven 2 archetype associated to a JBI service assembly project.)

805: remote -> org.ow2.petals:maven-archetype-petals-jbi-service-engine (This project is Maven 2 archetype associated to a JBI service engine project.)

806: remote -> org.ow2.petals:maven-archetype-petals-jbi-service-unit (This project is Maven 2 archetype associated to a JBI service unit project.)

807: remote -> org.ow2.petals:maven-archetype-petals-jbi-shared-library (This project is Maven 2 archetype associated to a JBI Shared Library project.)

808: remote -> org.ow2.shelbie:shelbie-command-archetype (-)

809: remote -> org.ow2.weblab.tools.maven:weblab-archetype-analyser (The Archetype used to generate a stub for analyser. This should be called through the weblab-archetype-plugin and not directly.)

810: remote -> org.ow2.weblab.tools.maven:weblab-archetype-configurable (The Archetype used to generate a stub for configurable. This should be called through the weblab-archetype-plugin and not directly.)

811: remote -> org.ow2.weblab.tools.maven:weblab-archetype-indexer (The Archetype used to generate a stub for indexer. This should be called through the weblab-archetype-plugin and not directly.)

812: remote -> org.ow2.weblab.tools.maven:weblab-archetype-queuemanager (The Archetype used to generate a stub for queuemanager. This should be called through the weblab-archetype-plugin and not directly.)

813: remote -> org.ow2.weblab.tools.maven:weblab-archetype-reportprovider (The Archetype used to generate a stub for reportprovider. This should be called through the weblab-archetype-plugin and not directly.)

814: remote -> org.ow2.weblab.tools.maven:weblab-archetype-resourcecontainer (The Archetype used to generate a stub for resourcecontainer. This should be called through the weblab-archetype-plugin and not directly.)

815: remote -> org.ow2.weblab.tools.maven:weblab-archetype-resources (The Archetype used to generate a stub for any WebLab service. It should be used in conjunction with interfaces specific archetypes. This should be called through the weblab-archetype-plugin and not directly.)

816: remote -> org.ow2.weblab.tools.maven:weblab-archetype-searcher (The Archetype used to generate a stub for searcher. This should be called through the weblab-archetype-plugin and not directly.)

817: remote -> org.ow2.weblab.tools.maven:weblab-archetype-sourcereader (The Archetype used to generate a stub for sourcereader. This should be called through the weblab-archetype-plugin and not directly.)

818: remote -> org.ow2.weblab.tools.maven:weblab-archetype-trainable (The Archetype used to generate a stub for trainable. This should be called through the weblab-archetype-plugin and not directly.)

819: remote -> org.parallelj:parallelj-archetype (ParallelJ is a Java framework for parallel computing. It provides flow modeling and execution. This archetype projects allows to create a project skeleton using ParallelJ.)

820: remote -> org.parallelj:parallelj-archetype-web (ParallelJ is a Java framework for parallel computing. It provides flow modeling and execution. This archetype projects allows to create a project skeleton using ParallelJ.)

821: remote -> org.parancoe:parancoe-pluginarchetype (-)

822: remote -> org.parancoe:parancoe-webarchetype (-)

823: remote -> org.patterntesting:patterntesting-tools (PatternTesting Tools (patterntesting-tools) is the container for tools around PatternTesting like the Ant extensions and Maven plugin.)

824: remote -> org.pustefixframework:pustefix-archetype-application (Pustefix Archetype for Applications)

825: remote -> org.pustefixframework:pustefix-archetype-basic (Pustefix archetype creating a basic application)

826: remote -> org.pustefixframework.maven.archetypes:pustefix-archetype-module (Pustefix Archetype for Modules)

827: remote -> org.qianalyze:QiAnalyzeModule-Archetype (The archetype to create a new QiAnalyze Module for more information visit http://java.net/projects/qianalyze)

828: remote -> org.qianalyze.sample:QiAnalyzeModule (The archetype to create a new QiAnalyze Module for more information visit http://java.net/projects/qianalyze)

829: remote -> org.qooxdoo:qooxdoo-archetype-desktop (An archetype to create a qooxdoo application)

830: remote -> org.qooxdoo:qooxdoo-archetype-gui (An archetype to create a qooxdoo application)

831: remote -> org.quattor.maven:cfg-module (-)

832: remote -> org.quattor.pan:panc-maven-archetype (-)

833: remote -> org.rauschig:maven-archetype-bundle (A maven archetype that incorporates common artifacts for OSS development and OSGi compatibility)

834: remote -> org.resthub:resthub-jpa-backbonejs-archetype (-)

835: remote -> org.resthub:resthub-jpa-backbonejs-multi-archetype (-)

836: remote -> org.resthub:resthub-mongodb-backbonejs-archetype (-)

837: remote -> org.resthub:resthub-mongodb-backbonejs-multi-archetype (-)

838: remote -> org.rhq:rhq-plugin-archetype (-)

839: remote -> org.rhq.maven:smartgwt-war-archetype (archetype for a Maven project for a SmartGWT web application (WAR))

840: remote -> org.richfaces.archetypes:richfaces-archetype-kitchensink (A starter Java EE 6 webapp project for use on JBoss AS 7 / EAP 6, generated from the jboss-javaee6-webapp archetype)

841: remote -> org.richfaces.archetypes:richfaces-archetype-simpleapp (-)

842: remote -> org.sadiframework:sadi-service-archetype (-)

843: remote -> org.scala-tools.archetypes:liftweb-archetype-blank (Archetype - blank project for liwftweb)

844: remote -> org.scala-tools.archetypes:liftweb-archetype-hellolift (Archetype - hellolift sample liwftweb application)

845: remote -> org.scala-tools.archetypes:scala-archetype-simple (The maven-scala-plugin is used for compiling/testing/running/documenting scala code in maven.)

846: remote -> org.sculptorgenerator:sculptor-maven-archetype (Maven archetype for a business tier project using the Sculptor code generator)

847: remote -> org.sculptorgenerator:sculptor-maven-archetype-ear (Maven archetype for a EAR project using the Sculptor code generator)

848: remote -> org.sculptorgenerator:sculptor-maven-archetype-parent (Maven archetype for a parent project using the Sculptor code generator)

849: remote -> org.sculptorgenerator:sculptor-maven-archetype-web (Maven archetype for a WAR project using the Sculptor code generator)

850: remote -> org.siqisource.agave:archetypes-quickstart (-)

851: remote -> org.sitoolkit.archetype:sit-archetype (This project is generated from org.sitoolkit.archetype:sit-archetype)

852: remote -> org.sitoolkit.tester:sit-tester-archetype (archetype for sit-tester)

853: remote -> org.slf4j:slf4j-archetype (The slf4j Archetype)

854: remote -> org.sonatype.flexmojos:flexmojos-archetypes-application (-)

855: remote -> org.sonatype.flexmojos:flexmojos-archetypes-library (-)

856: remote -> org.sonatype.flexmojos:flexmojos-archetypes-modular-webapp (-)

857: remote -> org.sonatype.nexus.archetypes:nexus-plugin-archetype (-)

858: remote -> org.springframework.osgi:spring-osgi-bundle-archetype (Spring OSGi Maven2 Archetype)

859: remote -> org.springframework.ws:spring-ws-archetype (Spring Web Services Maven2 Archetype.)

860: remote -> org.sqlproc:sqlproc-archetype-simple-jdbc (SQL Processor Archetype for Simple JDBC Application)

861: remote -> org.sqlproc:sqlproc-archetype-simple-spring (SQL Processor Archetype for Simple Spring Application)

862: remote -> org.structr:structr-base-archetype (Structr is an open source framework based on the popular Neo4j graph database.)

863: remote -> org.structr:structr-simple-example-archetype (Structr is an open source framework based on the popular Neo4j graph database.)

864: remote -> org.structr:structr-ui-archetype (Structr is an open source framework based on the popular Neo4j graph database.)

865: remote -> org.sweble.wikitext:swc-example-basic-archetype (An archetype that creates a simple application which is able to parse a page written in Wikitext and render it as HTML.)

866: remote -> org.sweble.wikitext:swc-example-serialization-archetype (An example project that contains a simple application that is able to parse a page written in Wikitext and serialize it to XML, JSON or binary.)

867: remote -> org.sweble.wikitext:swc-example-xpath-archetype (An archetype that creates a simple application which is able to parse a page written in Wikitext and perform an XPath query on that document.)

868: remote -> org.switchyard.archetypes:switchyard-application (-)

869: remote -> org.syncope:syncope-archetype (Syncope archetype)

870: remote -> org.telosys.starterkits:angularHtml5offline-starterkit (archetype for starter Kit angular Html5 offline)

871: remote -> org.telosys.starterkits:struts-jpa-starterkit (archetype for starter Kit Struts)

872: remote -> org.tinygroup:buproject (-)

873: remote -> org.tinygroup:flowcomponent (-)

874: remote -> org.tinygroup:plugincomponent (-)

875: remote -> org.tinygroup:uicomponent-archetype (-)

876: remote -> org.tinygroup:webappproject (-)

877: remote -> org.trailsframework:trails-archetype (-)

878: remote -> org.trailsframework:trails-secure-archetype (-)

879: remote -> org.tynamo:tynamo-archetype (-)

880: remote -> org.wicketstuff.scala:wicket-scala-archetype (-)

881: remote -> org.wicketstuff.scala:wicketstuff-scala-archetype (Basic setup for a project that combines Scala and Wicket, depending on the Wicket-Scala project. Includes an example Specs test.)

882: remote -> org.wikbook:wikbook.archetype (-)

883: remote -> org.xaloon.archetype:xaloon-archetype-wicket-jpa-glassfish (-)

884: remote -> org.xaloon.archetype:xaloon-archetype-wicket-jpa-spring (-)

885: remote -> org.xwiki.commons:xwiki-commons-component-archetype (Make it easy to create a maven project for creating XWiki Components.)

886: remote -> org.xwiki.rendering:xwiki-rendering-archetype-macro (Make it easy to create a maven project for creating XWiki Rendering Macros.)

887: remote -> org.zkoss:zk-archetype-component (An archetype that generates a starter ZK component project)

888: remote -> org.zkoss:zk-archetype-extension (An archetype that generates a starter ZK extension project)

889: remote -> org.zkoss:zk-archetype-theme (An archetype that generates a starter ZK theme project)

890: remote -> org.zkoss:zk-archetype-webapp (An archetype that generates a starter ZK CE webapp project)

891: remote -> org.zkoss:zk-ee-eval-archetype-webapp (An archetype that generates a starter ZK EE-eval webapp project)

892: remote -> org.zkoss:zk-ee-eval-archetype-webapp-spring (An archetype that generates a starter ZK EE-eval webapp project with Spring)

893: remote -> org.zkoss:zk-ee-eval-archetype-webapp-spring-jpa (An archetype that generates a starter ZK EE-eval webapp project with Spring and JPA)

894: remote -> pl.bristleback:webapp-archetype (Web archetype for Bristleback Websocket Framework)

895: remote -> pro.savant.circumflex:webapp-archetype (-)

896: remote -> ru.circumflex:circumflex-archetype (-)

897: remote -> ru.nikitav.android.archetypes:release (-)

898: remote -> ru.nikitav.android.archetypes:release-robolectric (-)

899: remote -> se.vgregion.javg.maven.archetypes:javg-minimal-archetype (-)

900: remote -> sk.seges.sesam:sesam-annotation-archetype (-)

901: remote -> tk.skuro:clojure-maven-archetype (A simple Maven archetype for Clojure)

902: remote -> uk.ac.rdg.resc:edal-ncwms-based-webapp (-)




Maven TemplateProject를 가져오는 방법은 다음과 같다.


mvn archetype:generate -DgroupId=생성할패키지 -DartifactId=생성할프로젝트명 -DarchetypeArtifactId=아키타입프로젝트Id -DarchetypeGroupId=아키타입그룹ID -DinteractiveMode=false