Skip to content

Commit

Permalink
[PPML] Fix ppml code style (intel-analytics#5584)
Browse files Browse the repository at this point in the history
* Add BigDL-core dep and scope
* Fix ppml code style
  • Loading branch information
qiyuangong authored and ForJadeForest committed Sep 20, 2022
1 parent cd8f0ed commit 0da86d0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions scala/ppml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,12 @@
<artifactId>bigdl-dllib-spark_${spark.version}</artifactId>
<version>2.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.intel.analytics.bigdl.core.dist</groupId>
<artifactId>all</artifactId>
<version>2.1.0-SNAPSHOT</version>
<scope>${bigdl-core-all-scope}</scope>
</dependency>
<dependency>
<groupId>com.intel.analytics.bigdl</groupId>
<artifactId>bigdl-grpc-spark_${spark.version}</artifactId>
Expand Down Expand Up @@ -418,4 +424,20 @@
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>linux</id>
<properties>
<bigdl-core-all-scope>provided</bigdl-core-all-scope>
</properties>
</profile>

<profile>
<id>mac</id>
<properties>
<bigdl-core-all-scope>provided</bigdl-core-all-scope>
</properties>
</profile>
</profiles>
</project>

0 comments on commit 0da86d0

Please sign in to comment.