|
96 | 96 | <releaseProfiles>sign,deploy-to-scijava</releaseProfiles>
|
97 | 97 |
|
98 | 98 | <scala.version>3.3.0</scala.version>
|
| 99 | + <scala-maven-plugin.version>4.8.1</scala-maven-plugin.version> |
99 | 100 | </properties>
|
100 | 101 |
|
| 102 | + <dependencies> |
| 103 | + <!-- SciJava dependencies --> |
| 104 | + <dependency> |
| 105 | + <groupId>org.scijava</groupId> |
| 106 | + <artifactId>scijava-common</artifactId> |
| 107 | + </dependency> |
| 108 | + |
| 109 | + <!-- Scala dependencies --> |
| 110 | + <dependency> |
| 111 | + <groupId>org.scala-lang</groupId> |
| 112 | + <artifactId>scala3-compiler_3</artifactId> |
| 113 | + <version>${scala.version}</version> |
| 114 | + <exclusions> |
| 115 | + </exclusions> |
| 116 | + </dependency> |
101 | 117 |
|
102 |
| - <build> |
103 |
| - <plugins> |
104 |
| - <plugin> |
105 |
| - <groupId>net.alchim31.maven</groupId> |
106 |
| - <artifactId>scala-maven-plugin</artifactId> |
107 |
| - <version>4.8.1</version> |
| 118 | + <!-- Test dependencies --> |
| 119 | + <dependency> |
| 120 | + <groupId>junit</groupId> |
| 121 | + <artifactId>junit</artifactId> |
| 122 | + <scope>test</scope> |
| 123 | + </dependency> |
| 124 | + </dependencies> |
| 125 | + |
| 126 | + <build> |
| 127 | + <plugins> |
| 128 | + <plugin> |
| 129 | + <groupId>net.alchim31.maven</groupId> |
| 130 | + <artifactId>scala-maven-plugin</artifactId> |
| 131 | + <version>${scala-maven-plugin.version}</version> |
108 | 132 | <configuration>
|
109 | 133 | <args>
|
110 | 134 | <arg>-unchecked</arg>
|
|
132 | 156 | </goals>
|
133 | 157 | </execution>
|
134 | 158 | </executions>
|
135 |
| - </plugin> |
136 |
| - </plugins> |
137 |
| - </build> |
138 |
| - |
139 |
| - <dependencies> |
140 |
| - <!-- SciJava dependencies --> |
141 |
| - <dependency> |
142 |
| - <groupId>org.scijava</groupId> |
143 |
| - <artifactId>scijava-common</artifactId> |
144 |
| - </dependency> |
145 |
| - |
146 |
| - <!-- Scala dependencies --> |
147 |
| - <dependency> |
148 |
| - <groupId>org.scala-lang</groupId> |
149 |
| - <artifactId>scala3-compiler_3</artifactId> |
150 |
| - <version>${scala.version}</version> |
151 |
| - <exclusions> |
152 |
| - </exclusions> |
153 |
| - </dependency> |
154 |
| - |
155 |
| - <!-- Test dependencies --> |
156 |
| - <dependency> |
157 |
| - <groupId>junit</groupId> |
158 |
| - <artifactId>junit</artifactId> |
159 |
| - <scope>test</scope> |
160 |
| - </dependency> |
161 |
| - </dependencies> |
| 159 | + </plugin> |
| 160 | + </plugins> |
| 161 | + </build> |
162 | 162 | </project>
|
0 commit comments