Hello :-)
im new to SmartGwt and to Maven. I've read a lot on both of them in the past few days, I still can't get an installation done.
Ive installed the Plugin:
with a BUILD SUCCESS.
BUT when i try to generate my archtype (inside Intellij) :
[WARNING] Archetype not found in any catalog. Falling back to central repository.
[WARNING] Add a repository with id 'archetype' in your settings.xml if archetype's repository is elsewhere.
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.2.0:generate (default-cli) on project untitled: Unable to add module to the current project as it is not of packaging type 'pom'
Ive go to my settings.xml in maven home an add:
This was also unsuccessful.
Here: http://github.smartclient.com/isc-ma...iguration.html it is written that a server must be configured. But are there settings for the LGPL?
<server> username ?
<server> password ?
Outside Intellij using cmd: BUILD SUCCESS but also the 2 Warnings....
Opening Intellij, and the next Error:
Sql...this is Pro and not LGPL ? Wrong archtype ? :eek:
So, whats wrong here ?
thanks
PS:

im new to SmartGwt and to Maven. I've read a lot on both of them in the past few days, I still can't get an installation done.
Ive installed the Plugin:
mvn com.isomorphic:isc-maven-plugin:1.4.5:install -Dproduct=SMARTGWT -Dlicense=LGPL -DbuildNumber=12.1p
BUT when i try to generate my archtype (inside Intellij) :
mvn archetype:generate -DartifactId=my-application -Dmodule=MyApplication -Dmodule-short-name=myapp -DgroupId=com.example -Dpackage=com.example.myapplication -DarchetypeGroupId=com.isomorphic.archetype -DarchetypeArtifactId=archetype-smartgwt-quickstart -DarchetypeVersion=LATEST -DinteractiveMode=false
[WARNING] Add a repository with id 'archetype' in your settings.xml if archetype's repository is elsewhere.
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.2.0:generate (default-cli) on project untitled: Unable to add module to the current project as it is not of packaging type 'pom'
Ive go to my settings.xml in maven home an add:
<profile>
<id>isc</id>
<properties>
<product>SMARTGWT</product>
<license>LGPL</license>
<buildNumber>4.0p</buildNumber>
<workdir>C:\Program Files\Java\smartgwt-12.1p</workdir>
<repositoryId>repository-manager</repositoryId>
<repositoryUrl>http://nexus.corp.int/nexus/content/repositories/thirdparty/</repositoryUrl>
</properties>
</profile>
<id>isc</id>
<properties>
<product>SMARTGWT</product>
<license>LGPL</license>
<buildNumber>4.0p</buildNumber>
<workdir>C:\Program Files\Java\smartgwt-12.1p</workdir>
<repositoryId>repository-manager</repositoryId>
<repositoryUrl>http://nexus.corp.int/nexus/content/repositories/thirdparty/</repositoryUrl>
</properties>
</profile>
<pluginGroups>
<pluginGroup>com.isomorphic</pluginGroup>
</pluginGroups>
<pluginGroup>com.isomorphic</pluginGroup>
</pluginGroups>
Here: http://github.smartclient.com/isc-ma...iguration.html it is written that a server must be configured. But are there settings for the LGPL?
<servers> [2] <server> <id>smartclient-developer</id> <username>scott</username> <password>tiger</password> </server> [3] <server> <id>repository-manager</id> <username>bruce.scott</username> <password>t1ger!</password> </server> </servers>
<server> password ?
Outside Intellij using cmd: BUILD SUCCESS but also the 2 Warnings....
Opening Intellij, and the next Error:
Cannot resolve com.isomorphic.smartgwt.lgpl:isomorphic-sql:12.1-p20210223
So, whats wrong here ?
thanks
PS:
Comment