jira-importer

Results 1102 comments of jira-importer

**[Peter De Maeyer](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=peterdm)** commented > I don't know if running every setup job when launching an isolated IT is really a good idea... I have no prior experience with Maven...

**[Jesse Glick](https://issues.apache.org/jira/secure/[email protected])** commented This is particular painful when a Nexus mirror is configured; for some reason seems to be much slower, taking ~2m to generate one project from archetype. I...

**[Martijn Dashorst](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=dashorst)** commented Stack trace of the process hanging: ``` "main" #1 prio=5 os_prio=31 cpu=926.26ms elapsed=47.33s tid=0x000000013880ea00 nid=0x1f03 runnable  [0x000000016d758000]   java.lang.Thread.State: RUNNABLE at sun.nio.ch.Net.connect0([email protected]/Native Method) at sun.nio.ch.Net.connect([email protected]/Net.java:579) at sun.nio.ch.Net.connect([email protected]/Net.java:568) at...

**[Klara Ward](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=JIRAUSER283562)** commented I also have this issue. I have a line in my pom.xml that says  `  com.spotify.archetypepackage.CucumberIT,` and in my archetype properties I have  `cucumberClass=com.spotify.archetypepackage.CucumberIT` (I had hoped...

**[Matthew Jason Benson](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mbenson)** commented How were you envisioning this would work? You can specify exactly which version of the plugin you want to use from the command line, e.g.: ```java...

**[Konrad Windszus](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=kwin)** commented This should be evaluated once the plug-in figured out the archetype’s artifact id and downloaded the according descriptor. It should fail with an explicit exception if the...

**[Michael Boyles](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=michaelboyles)** commented The issue seems to be that a class with the same FQN exists in two dependencies. When shared-utils dependencies are like this  ```java junit junit 4.13 test...

**[Elliotte Rusty Harold](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=elharo)** commented A class that exists in two or more dependencies is an error when using Java 9 or later with the Java Platform Module System. From https://jlbp.dev/JLBP-5  ...

**[Michael Boyles](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=michaelboyles)** commented I suppose the important bit there is "when named modules are used", which is unfortunate. Plenty of people don't bother with the module system

**[Elliotte Rusty Harold](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=elharo)** commented See https://github.com/apache/maven-changes-plugin/pull/105 Briefly, a project can fix this by matching the Hamcrest version to the JUnit version. That is, do not upgrade hamcrest to 3.0 but...