Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.
Level 1
Level 2
Melden Sie sich an, um alle Badges zu sehen
Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.
Hello there!
I have this problem that when I install using eclipse, it only installs to my .m2 repository instead of localhost:4502. What could be the cause of this?
-already make sure the base POM file is pointing to localhost:4502
Now I'm having thoughts it's because if the setting.xml that WKND tut let me put in .m2. but if I delete the setting.xml. I'm getting an error.
How can I let eclipse to install in localhost:4502? Thanks!
Gelöst! Gehe zu Lösung.
Zugriffe
Antworten
Likes gesamt
For Java EE (aka Eclipse) to produce the same results do this -
1) Right click on the project folder that you want to build
2) Click on Run as > Maven Build...
3) Mention the goals & profile that you want to execute: clean install -PautoInstallPackage
4) Hit Run and check the results
what cmd do you use?
Zugriffe
Antworten
Likes gesamt
default.
I'm not having this problem before. it just suddenly happen.
It goes to my .m2 repository.
I've got my base POM setup right.
using CMD or Eclipse JAVA EE. produces same results.
Zugriffe
Antworten
Likes gesamt
how does your maven command look like? Do you use a specific profile? (The deployment to a local AEM instance requires you to enable a specific profile, don't know its name from the top of my head).
Jörg
Zugriffe
Antworten
Likes gesamt
Try opening up your project in Command line and typing:
mvn -PautoInstallPackage install
That should deploy your project to AEM.
Let us know if you are successful with that command.
Zugriffe
Antworten
Likes gesamt
I didn't touch any Profile. I just set my MAVEN_HOME and path. I can deploy directly before, then this suddenly happens.
Zugriffe
Antworten
Likes gesamt
Still went to my repo
Base POM
Zugriffe
Antworten
Likes gesamt
Can you search for the below section in your pom.xml? The 'id' mentioned is your profile name which you can pass to mvn command like Scott mentioned above using -P flag
If its missing then add it and test.
mvn clean install -PautoInstallPackage
<profiles>
<!-- something here -->
<profile>
<id>autoInstallPackage</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>filevault-package-maven-plugin</artifactId>
<executions>
<execution>
<id>create-package</id>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.day.jcr.vault</groupId>
<artifactId>content-package-maven-plugin</artifactId>
<executions>
<execution>
<id>install-package</id>
<goals>
<goal>install</goal>
</goals>
<configuration>
<targetURL>http://${aem.host}:${aem.port}/crx/packmgr/service.jsp</targetURL>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
<!-- something here -->
</profiles>
Zugriffe
Antworten
Likes gesamt
Update.
CMD and JAVA EE displays the same result, but CMD deploys to localhost even tho displays to .m2. but Java EE displays installed to .m2 and also doesn't reflect to localhost.
Wierd
Zugriffe
Antworten
Likes gesamt
Heres mine. I think we have the same
<profile>
<id>autoInstallPackage</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>filevault-package-maven-plugin</artifactId>
<executions>
<execution>
<id>create-package</id>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.day.jcr.vault</groupId>
<artifactId>content-package-maven-plugin</artifactId>
<executions>
<execution>
<id>install-package</id>
<goals>
<goal>install</goal>
</goals>
<configuration>
<targetURL>http://${aem.host}:${aem.port}/crx/packmgr/service.jsp</targetURL>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
Zugriffe
Antworten
Likes gesamt
For Java EE (aka Eclipse) to produce the same results do this -
1) Right click on the project folder that you want to build
2) Click on Run as > Maven Build...
3) Mention the goals & profile that you want to execute: clean install -PautoInstallPackage
4) Hit Run and check the results
Thanks! works like charm. It still says Installed on .m2 repository but it reflects to my localhost too!
P.S. I also did got some errors so this is my build Profile:
Zugriffe
Antworten
Likes gesamt
Zugriffe
Likes
Antworten
Zugriffe
Likes
Antworten