Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [m2e-users] How to do something like "os-maven-plugin" that works with m2e?
  • From: "KARR, DAVID" <dk068x@xxxxxxx>
  • Date: Mon, 11 Apr 2022 18:19:32 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=att.com; dmarc=pass action=none header.from=att.com; dkim=pass header.d=att.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=N9VL6T6KkIkV0eFkDBOKNPTXGzbDSSP9tOZeGErirfE=; b=S8lR4Ak16CumQcFP2MSEL2X1y8jtMQvxDzYlLb8zVsGjjeIZOBGkR3n31QdU7PswlJ9AaktO5uvdVG28EZla+XMoIBEa+SMQq/8SK7SnLEoOv2S+Vm19QUHIGkk42SWm/JQRl9SgIMv1NTKY8TwgetWw6aeDauZWJnZvy5q2wQ8Dk3fecef2tFronFeKkaoSIw/vlq1wUh07jJo1eh75Un3Cm6o4x7H4vPBjK0g0M8gRQzT5CVC7CRFC8E4OCVH4g2yorwA7nfYIdaZt1odkwEpskfYKASL284AuaMC16VxkOi9PYLevfarvY4M19O4MrPwRG4ld0mclxAhEjn6uyA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=dcqgXHAWiiSrS02x5JUjJjTwFmjsNifF4YaEzedC/Em79SgbYlHol5ALXVk2PMEx7y7XoeXosY9pXJ4FagqdGUKXji1UwTWgxh6ZKkASU8ZUavW6w3XEoWawHrR8z+fQX/CX/n0Gr2bhI0Dq0dAw3xKjunurDanGwNi0ghH2A3fPQ2IBozNaLlrISvK8zsOzksldIJAnLeZKLEHQKxKE7TPhRCCMGpYlGeKjXHq6r3snK41VE8H+EZ7pDgLLnZc9D+8uJ2iZIFxfEa9PFLLIIaw4UOIp70H+bMaiyzPjZ5U1vjxic2NQq8iGYxhpV+2PeXytwFv1CHHR1cXgyIz3cg==
  • Delivered-to: m2e-users@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/m2e-users/>
  • List-help: <mailto:m2e-users-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/m2e-users>, <mailto:m2e-users-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/m2e-users>, <mailto:m2e-users-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AdhNzv/dzUT1OsPOS3KIq5wyWHX0qgAAasPQ
  • Thread-topic: How to do something like "os-maven-plugin" that works with m2e?

Ah.  Never mind.  I found https://github.com/trustin/os-maven-plugin/issues/34 .

> -----Original Message-----
> From: m2e-users <m2e-users-bounces@xxxxxxxxxxx> On Behalf Of KARR, DAVID
> Sent: Monday, April 11, 2022 11:13 AM
> To: m2e-users@xxxxxxxxxxx
> Subject: [m2e-users] How to do something like "os-maven-plugin" that
> works with m2e?
> 
> *** Security Advisory: This Message Originated Outside of AT&T ***.
> Reference http://cso.att.com/EmailSecurity/IDSP.html for more
> information.
> 
> I'm looking at a project with a dependency like this:
> ---------------------
> 		<dependency>
> 			<groupId>io.netty</groupId>
> 			<artifactId>netty-tcnative</artifactId>
> 			<version>2.0.20.Final</version>
> 			<classifier>${os.detected.classifier}</classifier>
> 			<scope>runtime</scope>
> 		</dependency>
> ----------------
> 
> That "os.detected.classifier" property is generated at build time with
> this:
> ---------------
> 			<extension>
> 				<groupId>kr.motd.maven</groupId>
> 				<artifactId>os-maven-plugin</artifactId>
> 				<version>1.5.0.Final</version>
> 			</extension>
> ---------------
> 
> This works fine from the command line.  In Eclipse, this fails with
> errors indicating that "${os.detected.classifier}" doesn't get populated
> with a value.
> 
> Is there a reasonable strategy for moving this forward?  Is there a
> different way of determining the platform classifier that is more
> compatible with m2e?
> _______________________________________________
> m2e-users mailing list
> m2e-users@xxxxxxxxxxx
> To unsubscribe from this list, visit
> https://urldefense.com/v3/__https://www.eclipse.org/mailman/listinfo/m2e
> -
> users__;!!BhdT!l1RfC4p80s95dF1cPf7nMg2KsAEIhxSrxQeOPXMfaGvCqGQTUVmYs3pVI
> zWa8U0Ww3XLynFCTMw$


Back to the top