|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <parent> |
| 7 | + <groupId>com.github.cormoran-io.cleanthat</groupId> |
| 8 | + <version>1.0-SNAPSHOT</version> |
| 9 | + <artifactId>aggregator-cleanthat</artifactId> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <artifactId>scala</artifactId> |
| 13 | + |
| 14 | + <properties> |
| 15 | + <scala.version>2.13</scala.version> |
| 16 | + |
| 17 | + <scalafmt.version>3.0.0-RC6</scalafmt.version> |
| 18 | + <scalafix.version>0.9.29</scalafix.version> |
| 19 | + <scalafix-scala.version>${scala.version}.6</scalafix-scala.version> |
| 20 | + </properties> |
| 21 | + |
| 22 | + <dependencies> |
| 23 | + <dependency> |
| 24 | + <groupId>com.github.cormoran-io.cleanthat</groupId> |
| 25 | + <artifactId>any-language</artifactId> |
| 26 | + <version>${project.version}</version> |
| 27 | + </dependency> |
| 28 | + |
| 29 | + <!-- https://mvnrepository.com/artifact/org.scalameta/scalafmt-core --> |
| 30 | + <dependency> |
| 31 | + <groupId>org.scalameta</groupId> |
| 32 | + <artifactId>scalafmt-core_${scala.version}</artifactId> |
| 33 | + <version>${scalafmt.version}</version> |
| 34 | + </dependency> |
| 35 | + <!-- https://mvnrepository.com/artifact/org.scalameta/scalafmt-interfaces --> |
| 36 | + <dependency> |
| 37 | + <groupId>org.scalameta</groupId> |
| 38 | + <artifactId>scalafmt-interfaces</artifactId> |
| 39 | + <version>${scalafmt.version}</version> |
| 40 | + </dependency> |
| 41 | + <!-- https://mvnrepository.com/artifact/org.scalameta/scalafmt-dynamic --> |
| 42 | + <dependency> |
| 43 | + <groupId>org.scalameta</groupId> |
| 44 | + <artifactId>scalafmt-dynamic_${scala.version}</artifactId> |
| 45 | + <version>${scalafmt.version}</version> |
| 46 | + </dependency> |
| 47 | + |
| 48 | + <!-- https://mvnrepository.com/artifact/ch.epfl.scala/scalafix-interfaces --> |
| 49 | + <dependency> |
| 50 | + <groupId>ch.epfl.scala</groupId> |
| 51 | + <artifactId>scalafix-interfaces</artifactId> |
| 52 | + <version>${scalafix.version}</version> |
| 53 | + </dependency> |
| 54 | + <!-- https://mvnrepository.com/artifact/ch.epfl.scala/scalafix-core --> |
| 55 | + <dependency> |
| 56 | + <groupId>ch.epfl.scala</groupId> |
| 57 | + <artifactId>scalafix-core_${scala.version}</artifactId> |
| 58 | + <version>${scalafix.version}</version> |
| 59 | + </dependency> |
| 60 | + <!-- https://mvnrepository.com/artifact/ch.epfl.scala/scalafix-reflect --> |
| 61 | + <dependency> |
| 62 | + <groupId>ch.epfl.scala</groupId> |
| 63 | + <artifactId>scalafix-reflect_${scalafix-scala.version}</artifactId> |
| 64 | + <version>${scalafix.version}</version> |
| 65 | + </dependency> |
| 66 | + <!-- https://mvnrepository.com/artifact/ch.epfl.scala/scalafix-cli --> |
| 67 | + <dependency> |
| 68 | + <groupId>ch.epfl.scala</groupId> |
| 69 | + <artifactId>scalafix-cli_${scalafix-scala.version}</artifactId> |
| 70 | + <version>${scalafix.version}</version> |
| 71 | + </dependency> |
| 72 | + |
| 73 | + <!-- https://mvnrepository.com/artifact/com.thesamet.scalapb/scalapb-runtime --> |
| 74 | + <dependency> |
| 75 | + <!-- Unclear why Scalafix does not bring this transitively --> |
| 76 | + <groupId>com.thesamet.scalapb</groupId> |
| 77 | + <artifactId>scalapb-runtime_${scala.version}</artifactId> |
| 78 | + <version>0.11.4</version> |
| 79 | + </dependency> |
| 80 | + |
| 81 | + |
| 82 | + <dependency> |
| 83 | + <groupId>com.github.cormoran-io.cleanthat</groupId> |
| 84 | + <artifactId>test-helpers</artifactId> |
| 85 | + <version>${project.version}</version> |
| 86 | + <scope>test</scope> |
| 87 | + </dependency> |
| 88 | + </dependencies> |
| 89 | +</project> |
0 commit comments