trustin / os-maven-plugin

A Maven plugin that sets various useful properties detected from ${os.name} and ${os.arch} properties.
Apache License 2.0
296 stars 66 forks source link

os.detected.classifier not getting resolved in IDEA #19

Open uppaldips opened 8 years ago

uppaldips commented 8 years ago

Using Idea 13.1 os.detected.classifier not getting resolved in the pom.xml It builds and installs fine, just shows error in editor? I am using it as Maven extension

amao12580 commented 7 years ago

same issuse

tomrlake commented 6 years ago

I was able to resolve this use by adding <classifier></classifier> to the dependency. Check with the repository that you are pulling from to see what file names are available. My repository didn't include the os.detected.classifier portion of some libraries so adding the empty classifier allowed me to download them correctly.

KingChange commented 6 years ago

same issuse... The version of IDEA is 2017.3.4(173.4548.28)... it's idea64.exe And the version of os-maven-plugin is 1.5.0.Final

trustin commented 6 years ago

Sorry for a late reply. Would you mind sharing the project repository so I can reproduce the problem?

Leiothrix commented 6 years ago

same issuse.

SDUmzg commented 5 years ago

same issuse

KANLON commented 5 years ago

同样问题

KANLON commented 5 years ago

同样问题

<extensions>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.6.1</version>
</extension>
</extensions>

I had solved by adding this. I am sorry that not read this project‘s detail carefully。

StevenXUzw commented 5 years ago

同样问题

 <extensions>
            <extension>
                <groupId>kr.motd.maven</groupId>
                <artifactId>os-maven-plugin</artifactId>
                <version>1.6.1</version>
            </extension>
 </extensions>

I had solved by adding this. I am sorry that not read this project‘s detail carefully。

same issue and same solution,tks

lourencorcc commented 1 year ago

StevenXUzw

i did that but now it doesnt recognize the version

palmada commented 1 year ago

I had the same problem and solved it by using the maven wrapper for my local maven install instead of the bundled maven, in the maven settings menu.