Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removing extensions from tensorflow-core-platform pom.
  • Loading branch information
Craigacp committed Mar 8, 2024
commit aa740ad9c6d4b0757f7ec86cc866d8f711d2588e
8 changes: 4 additions & 4 deletions tensorflow-core/tensorflow-core-platform/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,25 +41,25 @@
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core-native</artifactId>
<version>${project.version}</version>
<classifier>${javacpp.platform.linux-x86_64.extension}</classifier>
<classifier>linux-x86_64</classifier>
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we should keep using properties but the with an extension here (e.g. ${javacpp.platform.linux-x86_64), just so we know the values are consistent. Not strong opinion either way.

</dependency>
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core-native</artifactId>
<version>${project.version}</version>
<classifier>${javacpp.platform.macosx-arm64.extension}</classifier>
<classifier>macosx-arm64</classifier>
</dependency>
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core-native</artifactId>
<version>${project.version}</version>
<classifier>${javacpp.platform.macosx-x86_64.extension}</classifier>
<classifier>macosx-x86_64</classifier>
</dependency>
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core-native</artifactId>
<version>${project.version}</version>
<classifier>${javacpp.platform.windows-x86_64.extension}</classifier>
<classifier>windows-x86_64</classifier>
</dependency>
</dependencies>

Expand Down