-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpom.xml
More file actions
90 lines (80 loc) · 3.05 KB
/
pom.xml
File metadata and controls
90 lines (80 loc) · 3.05 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>de.uni.freiburg.iig.telematik</groupId>
<artifactId>tools</artifactId>
<version>1.0.2</version>
</parent>
<artifactId>SEPIA</artifactId>
<packaging>jar</packaging>
<name>SEPIA: Security-oriented PN Framework</name>
<description>SEPIA provides implementations for various types of Petri nets. Along Place/Transition-nets, it supports Petri nets with distinguishable token colors and defines coloured workflow nets, where coloured tokens are interpreted as data elements used during process execution. To support information flow analysis of processes, SEPIA defines so-called IF-Nets, tailored for security-oriented workflow modeling which enable users to assign security-levels (HIGH, LOW) to transitions, data elements and persons/agents participating in the process execution.</description>
<url>https://github.com/iig-uni-freiburg/SEPIA</url>
<organization>
<name>Institute of Computer Science and Social Studies, Department of Telematics</name>
<url>http://www.telematik.uni-freiburg.de/</url>
</organization>
<licenses>
<license>
<name>bsd_3</name>
<url>http://opensource.org/licenses/BSD-3-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/iig-uni-freiburg/SEPIA.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>de.invation.code</groupId>
<artifactId>TOVAL</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>de.uni.freiburg.iig.telematik</groupId>
<artifactId>JAGAL</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>de.uni.freiburg.iig.telematik</groupId>
<artifactId>SEWOL</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>net.java.dev.msv</groupId>
<artifactId>msv-core</artifactId>
<version>2013.6.1</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<outputDirectory>bin/classes</outputDirectory>
<testOutputDirectory>bin/tests</testOutputDirectory>
<directory>bin</directory>
<resources>
<resource>
<directory>res</directory>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.5</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>