项目作者: TheJavaGuy

项目描述 :
Maven archetype for creating console applications in Java 8
高级语言: Java
项目地址: git://github.com/TheJavaGuy/java8-consoleapp-archetype.git
创建时间: 2017-02-01T16:50:22Z
项目社区:https://github.com/TheJavaGuy/java8-consoleapp-archetype

开源协议:GNU General Public License v3.0

下载


1. About java8-consoleapp-archetype

java8-consoleapp-archetype is a maven archetype for creating Java 8 console applications.

2. Features

  • Generates complete directory structure (source code, tests, resources)
  • Generates distribution script, so you can quickly package your application as .zip archive with all dependencies included
  • Generates production-ready maven project with configured important plugins (compile, jar, source, javadoc, assembly)
  • Generated project comes with most popular libraries:
    • JCommander for parsing command-line args
    • Guava for general purpose programming
    • slf4j and log4j2 for logging, preconfigured for both file and console logging
    • JUnit for unit testing
    • AssertJ or Hamcrest for assertions (you can choose during project generation)
    • Mockito or jmock for mocks (you can choose during project generation)

3. Installation

Before you can generate projects, you must install java8-consoleapp-archetype locally. If you use Windows, run install.bat. If you use GNU/Linux or Mac, run install.sh.

4. Usage

  1. $ mvn archetype:generate -DarchetypeCatalog=local

You should see a list of locally installed archetypes similar to this one:

  1. Choose archetype:
  2. 1: local -> org.thejavaguy.archetype:java8-consoleapp-archetype (Java8 console app archetype)
  3. Choose a number or apply filter (format: [groupId:]artifactId, case sensitive contains): :

Simply choose a number in front of org.thejavaguy.archetype:java8-consoleapp-archetype (in this case, 1), answer questions about your groupId, artifactId etc. and your project will be generated in a directory one level below current one.

When your project is generated, go to project dir and type mvn package. As a result you’ll get .zip archive with a runnable JAR + resources + dependencies. Simply unpack it wherever you want and start it in a usual way (java -jar yourapp.jar).

5. Example

  1. $ mvn archetype:generate -DarchetypeCatalog=local
  2. [INFO] Scanning for projects...
  3. [INFO]
  4. [INFO] ------------------< org.apache.maven:standalone-pom >-------------------
  5. [INFO] Building Maven Stub Project (No POM) 1
  6. [INFO] --------------------------------[ pom ]---------------------------------
  7. [INFO]
  8. [INFO] >>> maven-archetype-plugin:3.1.2:generate (default-cli) > generate-sources @ standalone-pom >>>
  9. [INFO]
  10. [INFO] <<< maven-archetype-plugin:3.1.2:generate (default-cli) < generate-sources @ standalone-pom <<<
  11. [INFO]
  12. [INFO]
  13. [INFO] --- maven-archetype-plugin:3.1.2:generate (default-cli) @ standalone-pom ---
  14. [INFO] Generating project in Interactive mode
  15. [INFO] No archetype defined. Using maven-archetype-quickstart (org.apache.maven.archetypes:maven-archetype-quickstart:1.0)
  16. Choose archetype:
  17. 1: local -> org.thejavaguy.archetype:java8-consoleapp-archetype (Java8 console app archetype)
  18. Choose a number or apply filter (format: [groupId:]artifactId, case sensitive contains): : 1
  19. Define value for property 'groupId': org.thejavaguy.app
  20. Define value for property 'artifactId': testapp
  21. Define value for property 'version' 1.0-SNAPSHOT: :
  22. Define value for property 'package' org.thejavaguy.app: :
  23. Define value for property 'projectDescription': Test app description
  24. Define value for property 'projectName': TestApp
  25. Define value for property 'useAssertj' (should match expression 'true|y|yes|false|n|no'): y
  26. Define value for property 'useHamcrest' (should match expression 'true|y|yes|false|n|no'): n
  27. Define value for property 'useJmock' (should match expression 'true|y|yes|false|n|no'): n
  28. Define value for property 'useMockito' (should match expression 'true|y|yes|false|n|no'): y
  29. Confirm properties configuration:
  30. groupId: org.thejavaguy.app
  31. artifactId: testapp
  32. version: 1.0-SNAPSHOT
  33. package: org.thejavaguy.app
  34. projectDescription: Test app description
  35. projectName: TestApp
  36. useAssertj: y
  37. useHamcrest: n
  38. useJmock: n
  39. useMockito: y
  40. Y: :
  41. [INFO] ----------------------------------------------------------------------------
  42. [INFO] Using following parameters for creating project from Archetype: java8-consoleapp-archetype:0.0.20
  43. [INFO] ----------------------------------------------------------------------------
  44. [INFO] Parameter: groupId, Value: org.thejavaguy.app
  45. [INFO] Parameter: artifactId, Value: testapp
  46. [INFO] Parameter: version, Value: 1.0-SNAPSHOT
  47. [INFO] Parameter: package, Value: org.thejavaguy.app
  48. [INFO] Parameter: packageInPathFormat, Value: org/thejavaguy/app
  49. [INFO] Parameter: package, Value: org.thejavaguy.app
  50. [INFO] Parameter: useAssertj, Value: y
  51. [INFO] Parameter: groupId, Value: org.thejavaguy.app
  52. [INFO] Parameter: useHamcrest, Value: n
  53. [INFO] Parameter: useMockito, Value: y
  54. [INFO] Parameter: projectDescription, Value: Test app description
  55. [INFO] Parameter: useJmock, Value: n
  56. [INFO] Parameter: artifactId, Value: testapp
  57. [INFO] Parameter: projectName, Value: TestApp
  58. [INFO] Parameter: version, Value: 1.0-SNAPSHOT
  59. [INFO] Project created from Archetype in dir: /Users/ivanmilosavljevic/src/testapp
  60. [INFO] ------------------------------------------------------------------------
  61. [INFO] BUILD SUCCESS
  62. [INFO] ------------------------------------------------------------------------

Structure of generated project looks like this:

  1. $ tree
  2. .
  3. ├── pom.xml
  4. └── src
  5. ├── assembly
  6. └── assembly.xml
  7. ├── main
  8. ├── java
  9. └── org
  10. └── thejavaguy
  11. └── app
  12. ├── App.java
  13. └── Args.java
  14. ├── resources
  15. └── log4j2.xml
  16. └── resources-ext
  17. └── ExternalResource.txt
  18. └── test
  19. ├── java
  20. └── org
  21. └── thejavaguy
  22. └── app
  23. └── AppTest.java
  24. └── resources
  25. 15 directories, 7 files

6. License

java8-consoleapp-archetype is licensed under GPLv3 license.

7. How to contact author

If you have a question or issue with java8-consoleapp-archetype itself please use Issues link. If you want to talk about anything else, I’m @_The_Java_Guy_ on Twitter.