forked from cloudsimplus/cloudsimplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
executable file
·163 lines (146 loc) · 6.27 KB
/
Copy pathpom.xml
File metadata and controls
executable file
·163 lines (146 loc) · 6.27 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?xml version="1.0"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.cloudsimplus</groupId>
<artifactId>cloudsim-plus-examples</artifactId>
<version>6.5.2</version>
<name>CloudSim Plus Examples</name>
<description>
Ready-to-run examples of how to use CloudSim Plus API.
It is an excellent start point to learn how to implement cloud computing
simulations using CloudSim Plus.
All examples of CloudSim Plus exclusive features are inside the org.cloudsimplus.examples package.
Each Java class with a main method is a different example.
</description>
<inceptionYear>2015</inceptionYear>
<licenses>
<license>
<name>GPLv3</name>
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Manoel Campos da Silva Filho</name>
<email>manoelcampos@gmail.com</email>
<organization>Instituto Federal de Educação Ciência e Tecnologia do Tocantins (IFTO)</organization>
<organizationUrl>http://www.ifto.edu.br</organizationUrl>
</developer>
<developer>
<name>Raysa Oliveira</name>
<email>oliveira.raysa@gmail.com</email>
<organization>Universidade da Beira Interior (UBI)</organization>
<organizationUrl>http://www.ubi.pt</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:manoelcampos/cloudsim-plus.git</connection>
<developerConnection>scm:git:git@github.com:manoelcampos/cloudsim-plus.git</developerConnection>
<url>git@github.com:manoelcampos/cloudsim-plus.git</url>
</scm>
<issueManagement>
<url>http://github.com/manoelcampos/cloudsim-plus/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<license-maven-plugin.version>3.0</license-maven-plugin.version>
<!-- License file to be used by the com.mycila.license-maven-plugin -->
<copyrightfile>../COPYRIGHT</copyrightfile>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<!-- Adds dependencies to classpath into the manifest file inside the jar !-->
<addClasspath>true</addClasspath>
<!-- Defines that the dependencies will follow the same
hierarchical directory structure of a maven repository !-->
<classpathLayoutType>repository</classpathLayoutType>
<!-- Defines the root folder where the dependencies are. In this case
is the the root of the local maven repository. !-->
<classpathPrefix>${user.home}/.m2/repository/</classpathPrefix>
</manifest>
</archive>
</configuration>
</plugin>
<!-- Creates an "uber jar" that includes all external dependencies
inside it. This way, the jar can be run directly in any
computer with a regular JVM installed. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- Keep the original jar file and generate a new shaded jar (the uber jar) -->
<shadedArtifactAttached>true</shadedArtifactAttached>
<!-- The suffix to add to the shaded jar -->
<shadedClassifierName>with-dependencies</shadedClassifierName>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${license-maven-plugin.version}</version>
<configuration>
<header>${copyrightfile}</header>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
<strictCheck>true</strictCheck>
<failIfMissing>false</failIfMissing>
<excludes>
<exclude>**/src/main/resources/**</exclude>
<exclude>**/src/main/java/org/cloudbus/**</exclude>
<exclude>**/*.md</exclude>
<exclude>**/*.xml</exclude>
<exclude>**/*.brite</exclude>
<exclude>**/package-info.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.cloudsimplus</groupId>
<artifactId>cloudsim-plus</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.3.0-alpha4</version>
</dependency>
</dependencies>
</project>