generator-prospa
Version:
Create fully working Single Page Applications using various technology combinations
60 lines (58 loc) • 2.31 kB
text/xml
<%_ if (language === 'scala') { -%>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-scala_2.13</artifactId>
<version>${jackson.version}</version>
</dependency>
<!--
This dependency is used to clear the following Scala compiler warning:
"Warning:scalac: While parsing annotations in <...>, could not find MAYBE in enum <none>. This is likely
due to an implementation restriction: an annotation argument cannot refer to a member of the annotated
class (scala/bug#7014)"
-->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>${findbugs.version}</version>
</dependency>
<%_ } -%>
<%_ if (language === 'groovy') { -%>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<classifier>indy</classifier>
<version>${groovy.version}</version>
</dependency>
<%_ } -%>
<%_ if (language === 'kotlin') { -%>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
<% } -%>
<%_ if (language === 'scala') { -%>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.version}</version>
</dependency>
<%_ } -%>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-json</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>