File: pom.xml

package info (click to toggle)
gradle-jflex-plugin 0.0.2-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 168 kB
  • sloc: java: 154; sh: 122; xml: 50; makefile: 2
file content (50 lines) | stat: -rw-r--r-- 1,768 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>co.tomlee.gradle.plugins</groupId>
  <artifactId>gradle-jflex-plugin</artifactId>
  <version>0.0.2</version>
  <name>gradle-jflex-plugin</name>
  <description>A Gradle plugin for the JFlex scanner generator</description>
  <url>https://github.com/thomaslee/gradle-jflex-plugin</url>
  <inceptionYear>2014</inceptionYear>
  <licenses>
    <license>
      <name>Apache License 2.0</name>
      <url>http://opensource.org/licenses/Apache-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>thomaslee</id>
      <name>Tom Lee</name>
      <email>github@tomlee.co</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git://github.com/thomaslee/gradle-jflex-plugin.git</connection>
    <developerConnection>scm:git@github.com:thomaslee/gradle-jflex-plugin.git</developerConnection>
    <url>https://github.com/thomaslee/gradle-jflex-plugin</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>de.jflex</groupId>
      <artifactId>jflex</artifactId>
      <version>1.7.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>de.jflex</groupId>
      <artifactId>cup_runtime</artifactId>
      <version>1.7.0</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>