Skip to content

Instantly share code, notes, and snippets.

@mikeacjones
Last active October 5, 2021 15:51
Show Gist options
  • Save mikeacjones/dc51febee233681bdbff37b33c79b357 to your computer and use it in GitHub Desktop.
Save mikeacjones/dc51febee233681bdbff37b33c79b357 to your computer and use it in GitHub Desktop.
<profiles>
<profile>
<id>active-on-windows</id>
<activation>
<os>
<family>Windows</family>
</os>
</activation>
<dependencies>
<dependency>
<groupId>com.sap.conn.jco</groupId>
<artifactId>sapjco3</artifactId>
<version>3.0.19</version>
<classifier>external-library</classifier>
<type>dll</type>
</dependency>
</dependencies>
</profile>
<profile>
<id>active-on-linux</id>
<activation>
<os>
<family>Unix</family>
</os>
</activation>
<dependencies>
<dependency>
<groupId>com.sap.conn.jco</groupId>
<artifactId>libsapjco3</artifactId>
<version>3.0.19</version>
<classifier>external-library</classifier>
<type>so</type>
</dependency>
</dependencies>
</profile>
<profile>
<id>active-on-macos</id>
<activation>
<os>
<family>mac</family>
</os>
</activation>
<dependencies>
<dependency>
<groupId>com.sap.conn.jco</groupId>
<artifactId>libsapjco3</artifactId>
<version>3.0.19</version>
<classifier>external-library</classifier>
<type>jnilib</type>
</dependency>
</dependencies>
</profile>
</profiles>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment