jira-importer

Results 1114 comments of jira-importer

**[Tamas Cservenak](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=cstamas)** commented If maven-embedder here means "programmatically invoking MavenCli from inside Maven..." then this is no-go.

**[Franz-Josef Färber](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=JIRAUSER305087)** commented Hello [Tamas Cservenak](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=cstamas), thanks for replying. > What is maven-embedder? > This: https://maven.apache.org/ref/3.9.6/maven-embedder/ . Seems to me like an official product of maven.apache.org . This JIRA should...

**[Elliotte Rusty Harold](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=elharo)** commented My gut is that if a toolchain can't be located, we shouldn't simply use JAVA_HOME. Erroring is better here. However, we might be able to define...

**[Elliotte Rusty Harold](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=elharo)** commented The problem with this idea is that we can match JDK versions, but the configuration can have arbitrary other properties like vendor or willy_wonka. We have...

**[dennis lucero](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=striderapache)** commented I noticed the toolchains plugin now has a [JDK discovery mechanism](https://maven.apache.org/plugins/maven-toolchains-plugin/toolchains/jdk-discovery.html). However it doesn’t work as I would expect after reading the documentation. * I don’t see...

**[Slawomir Jaranowski](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=slawekjaranowski)** commented can you provide example project and expected output?

**[Michael Osipov](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=michael-o)** commented Don't use 4, it is reversed now for future development with Maven 4.

**[Michael Osipov](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=michael-o)** commented Probably the documentation is not clear on this. Why do you want to use optional deps with WAR files at all?

**[Hockchai Lim](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=hockchailim)** commented This WAR module is really a EJB module. I followed Tomee's suggestion on packaging a EJB in WAR file (http://tomee.apache.org/deploying-in-tomee.html). So, this WAR module is really a...

**[Vsevolod Golovanov](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=vsevolod%20golovanov)** commented In contrast, we're using `optional` in WAR as a way to build different WARs for different customers. ``` my.company ui-module-a ${module-a-excluded} my.company ui-module-b ${module-b-excluded} ... maven-war-plugin ${customer-classifier}...