1) Add the Plugin "Maven Archetype Catalogs" to Intelij

1.1) File -> Settings -> Plugins -> Browse repositories...

1.2) Search for "Maven archetype" and look for the "Maven Archetype Catalogs"

1.3) Click on Install button of that plugin. After finished click the restart intelij button

2) Create a New Project on Intelij based on Spring Boot Simple Archetype

2.1) File -> New -> Project

2.2) Check the option "Create from archetype" and click the Add Archetype button

2.3) Fill the fields with the archtetype information you want o use

    GroupId: org.springframework.boot
    ArtifactId: spring-boot-sample-simple-archetype
    Version: 1.0.2.RELEASE
    Repository: http://central.maven.org/maven2/

2.4) Click OK

This will tell the intelij to download the new archetype and create a new maven project based on this archetype you selected, in this case will generate a project using Spring Boot CommandLinner

Answer from brunocrt on Stack Overflow
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › community › posts › 360009667139-Creating-new-projects-with-maven-Archetypes
Creating new projects with maven Archetypes – IDEs Support (IntelliJ Platform) | JetBrains
September 9, 2020 - What archetypeVersion is set when IDE generates the project? Could you specify the full command line (it is printed in the very first line in Run tool window). Thank you. ... Not sure if this is what you were after, but... "C:\Program Files\Java\jdk1.8.0_201\bin\java.exe" -Dmaven.multiModuleProjectDirectory=C:\Users\kkrasnowsky\AppData\Local\Temp\archetype1tmp -Xms256m -Xmx512m "-Dmaven.home=C:\Program Files\JetBrains\IntelliJ IDEA 2019.1\plugins\maven\lib\maven3" "-Dclassworlds.conf=C:\Program Files\JetBrains\IntelliJ IDEA 2019.1\plugins\maven\lib\maven3\bin\m2.conf" "-Dmaven.ext.class.path=C
🌐
Reddit
reddit.com › r/intellijidea › create a new custom maven-archetype
r/IntelliJIDEA on Reddit: Create a new custom maven-archetype
February 1, 2019 -

I want to create my custom maven-archetype in Intellij. Like maven-archetype-quickstart which create automatically a package with App.java and put in pom.xml dependency junit.

I want my custom archetype to create a specific tree with specific classes and in pom.xml to have some dependency and plugins. And every time when I create a maven-project with my custom archetype, to starts with that structure.

How can I do that?

If something is not clear please tell me and I will try to add more information.

Discussions

How to use maven archetype in intellij idea, such as spring-mvc-quickstart-archetype? - Stack Overflow
I'm a newbie of maven. These day, I want to create a spring mvc project, so I find spring-mvc-quickstart-archetype, but how to use it in Intellij IDEA? More on stackoverflow.com
🌐 stackoverflow.com
IntelliJ new project - maven archetype list empty - Stack Overflow
When creating IntelliJ → New Project → Maven, the archetype list is blank and does not populate no matter how long the amount of time elapsed. The "Loading archetype list..." continues but does not More on stackoverflow.com
🌐 stackoverflow.com
java - maven quickstart in intellij idea - Stack Overflow
When executing File->New->project->Maven->maven-archetype-quickstart, a project will be created without the src folder (->main,->test, etc.) and empty pom.xml . What is the problem? ... When you create a new project using IntelliJ, it takes a while to set up the project. More on stackoverflow.com
🌐 stackoverflow.com
Maven Archetype change in intellij - Stack Overflow
I created a maven project using archetype j2ee-simple in IntelliJ IDEA (2016.1.3). Now is there a way, I can change the archetype for this project? More on stackoverflow.com
🌐 stackoverflow.com
🌐
JetBrains
jetbrains.com › help › idea › maven-support.html
Maven | IntelliJ IDEA Documentation
Otherwise, select File | New | Project from the main menu. Select Maven Archetype from the options on the left. Using options on the right, configure your project: Name: specify the name of your project.
🌐
Medium
luizcostatech.medium.com › creating-a-java-project-using-maven-archetype-7f2610b7b4e9
Creating a Java project using Maven archetype | by Luiz Gustavo De O. Costa | Medium
January 27, 2022 - ... Well, there are some weird folders, right? Yes. Then you can create your own or choose another from the many options, as will be shown below. Create a new project and then select Maven, Create from archetype
🌐
JetBrains
jetbrains.com › guide › java › tutorials › working-with-maven › creating-a-project
Creating a Maven project - JetBrains Guide
February 17, 2023 - If you're creating a simple project, you don't need to select an archetype. If you click on Artifact Coordinates you'll see more Maven settings. You can declare a group id, and the artifact id of the application itself. Press Create, and IntelliJ IDEA will generate the basic pom.xml file as well as the default directory structure for a Maven project with the source and test folders defined.
🌐
Austin's Dev
austinsdev.com › home › create a maven project from an archetype in intellij idea
Create a Maven Project from an Archetype in IntelliJ IDEA – Austin's Dev
May 29, 2018 - Go to “Create New Project” in the IDE. From the sidebar, select “Maven.” · Add or select the JDK you would like to use via the “Project SDK” drop-down box. Check “Create from archetype” and click “Add archetype…”
Find elsewhere
🌐
TestingDocs
testingdocs.com › home › intellij idea › create maven project with intellij idea [ 2024 ]
Create Maven Project with IntelliJ IDEA [ 2024 ] | TestingDocs
June 22, 2025 - An archetype is a Maven plugin to create a project as per the template. maven-archetype-quickstart archetype plugin is used to create a quick and simple Java application. Launch IntelliJ IDEA.
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › community › posts › 206848145-Create-New-Project-through-wizard-with-maven-support
Create New Project through wizard with maven support – IDEs Support (IntelliJ Platform) | JetBrains
Seems that this exact way is not provided. Probably the way to do it is like: 1. Create Maven project. If you don't know the proper archetype, then just plain pom.xml, by quickstart archetype or any. 2. Insert into this pom.xml necessary dependencies and plugins.
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › community › posts › 115000463144-Creating-maven-archetype
Creating maven archetype – IDEs Support (IntelliJ Platform) | JetBrains
July 24, 2017 - Besides that there is the lack of support in case of maven archetype development, given that i have to work with java code in the resources, and it refuses to move java files to new packagess and such. (and there are some other minor inconveniences, like showing archetype based syntaxes like ... Is there any chance that idea will support archetypes more in the future or any workaround to make the IDEA support this kind of development? ... Please check the open issues related to archetypes first.
Top answer
1 of 10
165

Maven's JRE is running out of memory.

Under Build → Build Tools → Maven → Importing, set VM options for importer to -Xmx1024m (the default vaule -Xmx512m is too low).

2 of 10
24

Switch Java runtimes

I had the same problem. My solution was, change the JRE in Settings → Maven → Importing → JDK for Importer. Switch from "Internal JRE" to "External JRE".

[  70091]  ERROR - plication.impl.ApplicationImpl - java.lang.OutOfMemoryError: GC overhead limit exceeded 
java.lang.RuntimeException: java.lang.OutOfMemoryError: GC overhead limit exceeded
        at com.intellij.execution.rmi.RemoteUtil.invokeRemote(RemoteUtil.java:134)
        at com.intellij.execution.rmi.RemoteUtil.access$100(RemoteUtil.java:36)
        at com.intellij.execution.rmi.RemoteUtil$2$1$1.compute(RemoteUtil.java:105)
        at com.intellij.execution.rmi.RemoteUtil.executeWithClassLoader(RemoteUtil.java:181)
        at com.intellij.execution.rmi.RemoteUtil$2$1.invoke(RemoteUtil.java:102)
        at com.sun.proxy.$Proxy101.getArchetypes(Unknown Source)
        at org.jetbrains.idea.maven.server.MavenIndexerWrapper$7.execute(MavenIndexerWrapper.java:168)
        at org.jetbrains.idea.maven.server.MavenIndexerWrapper$7.execute(MavenIndexerWrapper.java:165)
        at org.jetbrains.idea.maven.server.RemoteObjectWrapper.perform(RemoteObjectWrapper.java:76)
        at org.jetbrains.idea.maven.server.MavenIndexerWrapper.getArchetypes(MavenIndexerWrapper.java:165)
        at org.jetbrains.idea.maven.indices.MavenIndicesManager.getArchetypes(MavenIndicesManager.java:308)
        at org.jetbrains.idea.maven.wizards.MavenArchetypesStep$6.run(MavenArchetypesStep.java:239)
        at com.intellij.openapi.application.impl.ApplicationImpl$8.run(ApplicationImpl.java:405)
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
        at java.util.concurrent.FutureTask.run(FutureTask.java:266)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
        at java.lang.Thread.run(Thread.java:745)
        at org.jetbrains.ide.PooledThreadExecutor$1$1.run(PooledThreadExecutor.java:56)
Caused by: java.lang.OutOfMemoryError: GC overhead limit exceeded
        at java.util.Arrays.copyOfRange(Arrays.java:3664)
        at java.lang.String.<init>(String.java:201)
        at org.apache.lucene.index.TermBuffer.toTerm(TermBuffer.java:122)
        at org.apache.lucene.index.SegmentTermEnum.term(SegmentTermEnum.java:167)
        at org.apache.lucene.index.SegmentMergeInfo.next(SegmentMergeInfo.java:66)
        at org.apache.lucene.index.MultiSegmentReader$MultiTermEnum.next(MultiSegmentReader.java:494)
        at org.apache.lucene.search.FieldCacheImpl$10.createValue(FieldCacheImpl.java:389)
        at org.apache.lucene.search.FieldCacheImpl$Cache.get(FieldCacheImpl.java:71)
        at org.apache.lucene.search.FieldCacheImpl.getStringIndex(FieldCacheImpl.java:351)
        at org.apache.lucene.search.FieldSortedHitQueue.comparatorString(FieldSortedHitQueue.java:415)
        at org.apache.lucene.search.FieldSortedHitQueue$1.createValue(FieldSortedHitQueue.java:206)
        at org.apache.lucene.search.FieldCacheImpl$Cache.get(FieldCacheImpl.java:71)
        at org.apache.lucene.search.FieldSortedHitQueue.getCachedComparator(FieldSortedHitQueue.java:167)
        at org.apache.lucene.search.FieldSortedHitQueue.<init>(FieldSortedHitQueue.java:55)
        at org.apache.lucene.search.TopFieldDocCollector.<init>(TopFieldDocCollector.java:43)
        at org.apache.lucene.search.IndexSearcher.search(IndexSearcher.java:121)
        at org.apache.lucene.search.Hits.getMoreDocs(Hits.java:113)
        at org.apache.lucene.search.Hits.<init>(Hits.java:90)
        at org.apache.lucene.search.Searcher.search(Searcher.java:61)
        at org.sonatype.nexus.index.DefaultSearchEngine.searchFlat(DefaultSearchEngine.java:179)
        at org.sonatype.nexus.index.DefaultSearchEngine.searchFlatPaged(DefaultSearchEngine.java:99)
        at org.sonatype.nexus.index.DefaultSearchEngine.searchFlatPaged(DefaultSearchEngine.java:77)
        at org.sonatype.nexus.index.DefaultNexusIndexer.searchFlat(DefaultNexusIndexer.java:386)
        at org.sonatype.nexus.index.archetype.NexusArchetypeDataSource.getArchetypeCatalog(NexusArchetypeDataSource.java:55)
        at org.jetbrains.idea.maven.server.Maven3ServerIndexerImpl.doCollectArchetypes(Maven3ServerIndexerImpl.java:324)
        at org.jetbrains.idea.maven.server.Maven3ServerIndexerImpl.getArchetypes(Maven3ServerIndexerImpl.java:317)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:483)
        at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:323)
        at sun.rmi.transport.Transport$1.run(Transport.java:178)
[  70094]  ERROR - plication.impl.ApplicationImpl - IntelliJ IDEA 14.0.2  Build #IU-139.659.2 
[  70094]  ERROR - plication.impl.ApplicationImpl - JDK: 1.8.0_25 
[  70094]  ERROR - plication.impl.ApplicationImpl - VM: Java HotSpot(TM) 64-Bit Server VM 
[  70094]  ERROR - plication.impl.ApplicationImpl - Vendor: Oracle Corporation 
[  70094]  ERROR - plication.impl.ApplicationImpl - OS: Linux 
[  70094]  ERROR - plication.impl.ApplicationImpl - Last Action: CloseProject 

^C
saschajostock@euerEhren:~/lib/Programme/idea-IU-139.225.3/bin$ ./idea.sh 
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=350m; support was removed in 8.0
DEBUG - [ORACLE-SQL] undefined element type: alter_external_table_clauses
DEBUG - [ORACLE-SQL] undefined element type: records_per_block_clause
DEBUG - [ORACLE-SQL] undefined element type: ref_attribute
DEBUG - [ORACLE-SQL] undefined element type: physical_properties
DEBUG - [ORACLE-SQL] undefined element type: redo_logfile_spec
DEBUG - [ORACLE-SQL] undefined element type: row_movement_clause
DEBUG - [ORACLE-SQL] undefined element type: hash_subpartition_quantity
DEBUG - [ORACLE-SQL] undefined element type: primary_operator
DEBUG - [ORACLE-SQL] undefined element type: xml_type_column_properties
DEBUG - [ORACLE-SQL] undefined element type: parameter_types
DEBUG - [ORACLE-SQL] undefined element type: partition_value
DEBUG - [ORACLE-SQL] undefined element type: lob_partition_storage
DEBUG - [ORACLE-SQL] undefined element type: create_cluster
DEBUG - [ORACLE-SQL] undefined element type: index_attributes
DEBUG - [ORACLE-SQL] undefined element type: parameter_type
DEBUG - [ORACLE-SQL] undefined element type: return_type
DEBUG - [ORACLE-SQL] undefined element type: scn_value
DEBUG - [ORACLE-SQL] undefined element type: move_table_clause
DEBUG - [ORACLE-SQL] undefined element type: data_item
DEBUG - [ORACLE-SQL] undefined element type: create_index_statement

[  12601]   WARN - org.jetbrains.io.BuiltInServer - Die Adresse wird bereits verwendet 
java.net.BindException: Die Adresse wird bereits verwendet
        at sun.nio.ch.Net.bind0(Native Method)
        at sun.nio.ch.Net.bind(Net.java:436)
        at sun.nio.ch.Net.bind(Net.java:428)
        at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:214)
        at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74)
        at io.netty.channel.socket.nio.NioServerSocketChannel.doBind(NioServerSocketChannel.java:125)
        at io.netty.channel.AbstractChannel$AbstractUnsafe.bind(AbstractChannel.java:512)
        at io.netty.channel.DefaultChannelPipeline$HeadContext.bind(DefaultChannelPipeline.java:1121)
        at io.netty.channel.ChannelHandlerInvokerUtil.invokeBindNow(ChannelHandlerInvokerUtil.java:108)
        at io.netty.channel.DefaultChannelHandlerInvoker.invokeBind(DefaultChannelHandlerInvoker.java:214)
        at io.netty.channel.AbstractChannelHandlerContext.bind(AbstractChannelHandlerContext.java:233)
        at io.netty.channel.DefaultChannelPipeline.bind(DefaultChannelPipeline.java:943)
        at io.netty.channel.AbstractChannel.bind(AbstractChannel.java:212)
        at io.netty.bootstrap.AbstractBootstrap$2.run(AbstractBootstrap.java:340)
        at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:343)
        at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:356)
        at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:834)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
        at java.lang.Thread.run(Thread.java:745)
        at org.jetbrains.ide.PooledThreadExecutor$1$1.run(PooledThreadExecutor.java:56)
[  13050]   WARN - .ExternalResourceManagerExImpl - Cannot find standard resource. filename:/META-INF/tapestry_5_0_0.xsd class=class com.intellij.javaee.ResourceRegistrarImpl, classLoader:null 
[ 135618]  ERROR - plication.impl.ApplicationImpl - java.lang.OutOfMemoryError: Java heap space 
java.lang.RuntimeException: java.lang.OutOfMemoryError: Java heap space
        at com.intellij.execution.rmi.RemoteUtil.invokeRemote(RemoteUtil.java:134)
        at com.intellij.execution.rmi.RemoteUtil.access$100(RemoteUtil.java:36)
        at com.intellij.execution.rmi.RemoteUtil$2$1$1.compute(RemoteUtil.java:105)
        at com.intellij.execution.rmi.RemoteUtil.executeWithClassLoader(RemoteUtil.java:181)
        at com.intellij.execution.rmi.RemoteUtil$2$1.invoke(RemoteUtil.java:102)
        at com.sun.proxy.$Proxy103.getArchetypes(Unknown Source)
        at org.jetbrains.idea.maven.server.MavenIndexerWrapper$7.execute(MavenIndexerWrapper.java:168)
        at org.jetbrains.idea.maven.server.MavenIndexerWrapper$7.execute(MavenIndexerWrapper.java:165)
        at org.jetbrains.idea.maven.server.RemoteObjectWrapper.perform(RemoteObjectWrapper.java:76)
        at org.jetbrains.idea.maven.server.MavenIndexerWrapper.getArchetypes(MavenIndexerWrapper.java:165)
        at org.jetbrains.idea.maven.indices.MavenIndicesManager.getArchetypes(MavenIndicesManager.java:308)
        at org.jetbrains.idea.maven.wizards.MavenArchetypesStep$6.run(MavenArchetypesStep.java:239)
        at com.intellij.openapi.application.impl.ApplicationImpl$8.run(ApplicationImpl.java:405)
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
        at java.util.concurrent.FutureTask.run(FutureTask.java:266)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
        at java.lang.Thread.run(Thread.java:745)
        at org.jetbrains.ide.PooledThreadExecutor$1$1.run(PooledThreadExecutor.java:56)
Caused by: java.lang.OutOfMemoryError: Java heap space
        at org.apache.lucene.search.FieldCacheImpl$10.createValue(FieldCacheImpl.java:402)
        at org.apache.lucene.search.FieldCacheImpl$Cache.get(FieldCacheImpl.java:71)
        at org.apache.lucene.search.FieldCacheImpl.getStringIndex(FieldCacheImpl.java:351)
        at org.apache.lucene.search.FieldSortedHitQueue.comparatorString(FieldSortedHitQueue.java:415)
        at org.apache.lucene.search.FieldSortedHitQueue$1.createValue(FieldSortedHitQueue.java:206)
        at org.apache.lucene.search.FieldCacheImpl$Cache.get(FieldCacheImpl.java:71)
        at org.apache.lucene.search.FieldSortedHitQueue.getCachedComparator(FieldSortedHitQueue.java:167)
        at org.apache.lucene.search.FieldSortedHitQueue.<init>(FieldSortedHitQueue.java:55)
        at org.apache.lucene.search.TopFieldDocCollector.<init>(TopFieldDocCollector.java:43)
        at org.apache.lucene.search.IndexSearcher.search(IndexSearcher.java:121)
        at org.apache.lucene.search.Hits.getMoreDocs(Hits.java:113)
        at org.apache.lucene.search.Hits.<init>(Hits.java:90)
        at org.apache.lucene.search.Searcher.search(Searcher.java:61)
        at org.sonatype.nexus.index.DefaultSearchEngine.searchFlat(DefaultSearchEngine.java:179)
        at org.sonatype.nexus.index.DefaultSearchEngine.searchFlatPaged(DefaultSearchEngine.java:99)
        at org.sonatype.nexus.index.DefaultSearchEngine.searchFlatPaged(DefaultSearchEngine.java:77)
        at org.sonatype.nexus.index.DefaultNexusIndexer.searchFlat(DefaultNexusIndexer.java:386)
        at org.sonatype.nexus.index.archetype.NexusArchetypeDataSource.getArchetypeCatalog(NexusArchetypeDataSource.java:55)
        at org.jetbrains.idea.maven.server.Maven3ServerIndexerImpl.doCollectArchetypes(Maven3ServerIndexerImpl.java:324)
        at org.jetbrains.idea.maven.server.Maven3ServerIndexerImpl.getArchetypes(Maven3ServerIndexerImpl.java:317)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:483)
        at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:323)
        at sun.rmi.transport.Transport$1.run(Transport.java:178)
        at sun.rmi.transport.Transport$1.run(Transport.java:175)
        at java.security.AccessController.doPrivileged(Native Method)
        at sun.rmi.transport.Transport.serviceCall(Transport.java:174)
        at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:557)
        at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:812)
        at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:671)
[ 135620]  ERROR - plication.impl.ApplicationImpl - IntelliJ IDEA 14.0.2  Build #IU-139.659.2 
[ 135620]  ERROR - plication.impl.ApplicationImpl - JDK: 1.8.0_25 
[ 135620]  ERROR - plication.impl.ApplicationImpl - VM: Java HotSpot(TM) 64-Bit Server VM 
[ 135620]  ERROR - plication.impl.ApplicationImpl - Vendor: Oracle Corporation 
[ 135620]  ERROR - plication.impl.ApplicationImpl - OS: Linux 
[ 135620]  ERROR - plication.impl.ApplicationImpl - Last Action: CloseProject 
🌐
GeeksforGeeks
geeksforgeeks.org › java › how-to-create-a-maven-project-in-intellij-idea
Creating a Maven Project in IntelliJ IDEA - GeeksforGeeks
Then, select the appropriate JDK version from the Project SDK dropdown. Under the Archetype section, choose maven-archetype-quickstart, which is a simple template for a basic Java application.
Published   January 9, 2026
🌐
Medium
medium.com › @panduka.karunasena › how-to-create-custom-maven-archetypes-d6a98fc64cb6
How to create custom maven archetypes? | by Panduka Karunasaena | Medium
October 23, 2021 - When considering a coding project, it’s the folder structure and configuration files which are provided by an IDE, when a certain type of project is selected to create. An example would be choosing to create a maven project by the IDE and the IDE generates a folder structure with a pom.xml file as shown below. .idea folder is generated by the Intellij IDEA · Methods to create archetypes.
🌐
JetBrains
plugins.jetbrains.com › plugin › 1789-maven-archetypes
Maven Archetypes - IntelliJ IDEs Plugin | Marketplace
This plugin helps to generate initial java project layout with the help of Maven Archetypes.
🌐
DZone
dzone.com › coding › java › creating a maven archetype from an existing project
Creating a Maven Archetype From an Existing Project
June 24, 2021 - For example, if you need a variable ... this project and a good readme. The maven goal archetype:create-from-project is the key to generate an archetype from a project....
🌐
Stack Overflow
stackoverflow.com › questions › 71587452 › maven-quickstart-in-intellij-idea
java - maven quickstart in intellij idea - Stack Overflow
If you execute this script in cmd, then the project is created well. mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=1.4 -DinteractiveMode=false · However, it can't be done in Intellij IDEA.
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › community › posts › 206881285-Maven-Confusion
Maven Confusion – IDEs Support (IntelliJ Platform) | JetBrains
March 5, 2013 - In my case, I was creating a brand new Maven project using the apache webapp archetype so there's nothing to "re-import", unless I'm misunderstanding what you mean. Also, I don't know how to get the blue src folder like you got. Still missing something pretty basic I guess.
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › community › posts › 206850885-How-to-create-a-project-from-a-custom-Maven-Archetype-
How to create a project from a custom Maven Archetype? – IDEs Support (IntelliJ Platform) | JetBrains
November 4, 2008 - IDEs Support (IntelliJ Platform) | JetBrains · Contact Support · Community · Sign in · Please consider editing your post and mark it as obsolete instead. Do you want to delete post? Permanently deleted user · Created November 04, 2008 21:05 · I see there's this New Project -> From Scratch -> From Maven Archetype available in build #8995.