Re: My computer problems
Posted: Sat Jun 13, 2020 10:50 am
A short text to describe your forum
https://www.universalmediaserver.com/forum/
https://www.universalmediaserver.com/forum/viewtopic.php?t=14210
Might need some help with thatNadahar wrote: ↑Sat Jun 13, 2020 10:47 am Eclipse can be a little bit bitchy to set up, because you have to install some extensions/plugins and know how to configure it to get it set up properly. Some people seem to give up on Eclipse before they get this right, and these people will usually say that "it's crap". That said, no software is "perfect", and the same goes for Eclipse - I've had some annoyances with the latest version. On my "development computer" I have an older version (Eclipse Luna) that I consider to be working pretty much "perfectly" though.
If you want to give Eclipse a try and need some instructions to get going, just ask and I'll do my best to explain.
Code: Select all
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-antrun-plugin
</artifactId>
<versionRange>
[1.7,)
</versionRange>
<goals>
<goal>run</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
pl.project13.maven
</groupId>
<artifactId>
git-commit-id-plugin
</artifactId>
<versionRange>
[${git-commit-id-plugin-version},)
</versionRange>
<goals>
<goal>revision</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.digitalmediaserver</groupId>
<artifactId>
crowdin-maven-plugin
</artifactId>
<versionRange>
[0.1,)
</versionRange>
<goals>
<goal>fetch</goal>
<goal>push</goal>
<goal>build</goal>
<goal>apply</goal>
<goal>pull</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute></execute>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>