├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── index.js └── templates │ ├── Gruntfile.js │ ├── README.md.erb │ ├── _bower.json │ ├── _generator.json │ ├── _package.json │ ├── _pom.xml │ ├── api │ └── _pom.xml │ ├── bowerrc │ ├── client │ ├── _pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── package │ │ └── client │ │ └── _AppClient.java │ ├── editorconfig │ ├── findbugs-exclude.xml │ ├── gitignore │ ├── jshintrc │ └── service │ ├── _app.yml │ ├── _pom.xml │ ├── spring_loaded │ ├── springloaded-1.1.3.jar │ └── springloaded-1.1.4.jar │ └── src │ └── main │ ├── java │ └── package │ │ ├── _AppService.java │ │ └── config │ │ └── _AppConfiguration.java │ └── resources │ ├── _banner.txt │ └── assets │ └── app │ ├── _index.html │ ├── css │ └── app.css │ ├── js │ ├── _app.js │ └── home │ │ └── _home-controller.js │ └── views │ └── home │ └── _home.html ├── entity ├── index.js └── templates │ ├── _generator.json │ └── service │ └── src │ └── main │ ├── java │ └── package │ │ ├── daos │ │ └── _EntityDAO.java │ │ ├── models │ │ ├── _AttrEnum.java │ │ └── _Entity.java │ │ └── resources │ │ └── _EntityResource.java │ └── resources │ └── assets │ └── app │ ├── js │ └── entity │ │ ├── _entity-controller.js │ │ ├── _entity-router.js │ │ └── _entity-service.js │ └── views │ └── entity │ └── _entities.html ├── package.json ├── resource ├── index.js └── templates │ ├── _generator.json │ └── service │ └── src │ └── main │ └── java │ └── package │ └── resources │ └── _AppResource.java └── test ├── test-creation.js └── test-load.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | temp/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/Gruntfile.js -------------------------------------------------------------------------------- /app/templates/README.md.erb: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | Blah blah 4 | 5 | -------------------------------------------------------------------------------- /app/templates/_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/_bower.json -------------------------------------------------------------------------------- /app/templates/_generator.json: -------------------------------------------------------------------------------- 1 | <%= generatorConfigStr %> 2 | -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/_pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/_pom.xml -------------------------------------------------------------------------------- /app/templates/api/_pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/api/_pom.xml -------------------------------------------------------------------------------- /app/templates/bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/bowerrc -------------------------------------------------------------------------------- /app/templates/client/_pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/client/_pom.xml -------------------------------------------------------------------------------- /app/templates/client/src/main/java/package/client/_AppClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/client/src/main/java/package/client/_AppClient.java -------------------------------------------------------------------------------- /app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/editorconfig -------------------------------------------------------------------------------- /app/templates/findbugs-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/findbugs-exclude.xml -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/gitignore -------------------------------------------------------------------------------- /app/templates/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/jshintrc -------------------------------------------------------------------------------- /app/templates/service/_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/service/_app.yml -------------------------------------------------------------------------------- /app/templates/service/_pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/service/_pom.xml -------------------------------------------------------------------------------- /app/templates/service/spring_loaded/springloaded-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/service/spring_loaded/springloaded-1.1.3.jar -------------------------------------------------------------------------------- /app/templates/service/spring_loaded/springloaded-1.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/service/spring_loaded/springloaded-1.1.4.jar -------------------------------------------------------------------------------- /app/templates/service/src/main/java/package/_AppService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/service/src/main/java/package/_AppService.java -------------------------------------------------------------------------------- /app/templates/service/src/main/java/package/config/_AppConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/service/src/main/java/package/config/_AppConfiguration.java -------------------------------------------------------------------------------- /app/templates/service/src/main/resources/_banner.txt: -------------------------------------------------------------------------------- 1 | <%= banner %> 2 | -------------------------------------------------------------------------------- /app/templates/service/src/main/resources/assets/app/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/service/src/main/resources/assets/app/_index.html -------------------------------------------------------------------------------- /app/templates/service/src/main/resources/assets/app/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/service/src/main/resources/assets/app/css/app.css -------------------------------------------------------------------------------- /app/templates/service/src/main/resources/assets/app/js/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/service/src/main/resources/assets/app/js/_app.js -------------------------------------------------------------------------------- /app/templates/service/src/main/resources/assets/app/js/home/_home-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/service/src/main/resources/assets/app/js/home/_home-controller.js -------------------------------------------------------------------------------- /app/templates/service/src/main/resources/assets/app/views/home/_home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/app/templates/service/src/main/resources/assets/app/views/home/_home.html -------------------------------------------------------------------------------- /entity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/entity/index.js -------------------------------------------------------------------------------- /entity/templates/_generator.json: -------------------------------------------------------------------------------- 1 | <%= generatorConfigStr %> 2 | -------------------------------------------------------------------------------- /entity/templates/service/src/main/java/package/daos/_EntityDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/entity/templates/service/src/main/java/package/daos/_EntityDAO.java -------------------------------------------------------------------------------- /entity/templates/service/src/main/java/package/models/_AttrEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/entity/templates/service/src/main/java/package/models/_AttrEnum.java -------------------------------------------------------------------------------- /entity/templates/service/src/main/java/package/models/_Entity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/entity/templates/service/src/main/java/package/models/_Entity.java -------------------------------------------------------------------------------- /entity/templates/service/src/main/java/package/resources/_EntityResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/entity/templates/service/src/main/java/package/resources/_EntityResource.java -------------------------------------------------------------------------------- /entity/templates/service/src/main/resources/assets/app/js/entity/_entity-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/entity/templates/service/src/main/resources/assets/app/js/entity/_entity-controller.js -------------------------------------------------------------------------------- /entity/templates/service/src/main/resources/assets/app/js/entity/_entity-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/entity/templates/service/src/main/resources/assets/app/js/entity/_entity-router.js -------------------------------------------------------------------------------- /entity/templates/service/src/main/resources/assets/app/js/entity/_entity-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/entity/templates/service/src/main/resources/assets/app/js/entity/_entity-service.js -------------------------------------------------------------------------------- /entity/templates/service/src/main/resources/assets/app/views/entity/_entities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/entity/templates/service/src/main/resources/assets/app/views/entity/_entities.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/package.json -------------------------------------------------------------------------------- /resource/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/resource/index.js -------------------------------------------------------------------------------- /resource/templates/_generator.json: -------------------------------------------------------------------------------- 1 | <%= generatorConfigStr %> 2 | -------------------------------------------------------------------------------- /resource/templates/service/src/main/java/package/resources/_AppResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/resource/templates/service/src/main/java/package/resources/_AppResource.java -------------------------------------------------------------------------------- /test/test-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/test/test-creation.js -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-dropwizard/HEAD/test/test-load.js --------------------------------------------------------------------------------