1 <?xml version="1.0" encoding="UTF-8"?> 2 <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"> 3 4 <parent> 5 <groupId>net.anotheria</groupId> 6 <artifactId>parent</artifactId> 7 <version>2.13</version> 8 </parent> 9 10 <modelVersion>4.0.0</modelVersion> 11 <artifactId>moskito</artifactId> 12 <version>2.10.0</version> 13 <name>MoSKito</name> 14 <description>MoSKito, the open source java monitoring</description> 15 <packaging>pom</packaging> 16 17 <modules> 18 <module>moskito-core</module> 19 <module>moskito-web</module> 20 <module>moskito-webui</module> 21 <module>moskito-aop</module> 22 <module>moskito-integration</module> 23 <module>moskito-extensions</module> 24 <module>moskito-inspect-standalone</module> 25 </modules> 26 27 <properties> 28 <jersey-version>1.18.1</jersey-version> 29 <source-version>1.7</source-version> 30 <target-version>1.7</target-version> 31 <aspectj.version>1.8.7</aspectj.version> 32 <aspectj-maven-plugin.version>1.8</aspectj-maven-plugin.version> 33 <aspectj-maven-plugin.complianceLevel>1.7</aspectj-maven-plugin.complianceLevel> 34 <moskito-webui-version>${project.version}</moskito-webui-version> 35 <distributeme.version>2.3.0</distributeme.version> 36 <moskitoplugins-version>1.0.0-SNAPSHOT</moskitoplugins-version> 37 </properties> 38 39 40 <scm> 41 <url>https://github.com/anotheria/moskito</url> 42 <connection>scm:git:git@github.com:anotheria/moskito.git</connection> 43 <developerConnection>scm:git:git@github.com:anotheria/moskito.git</developerConnection> 44 </scm> 45 <dependencyManagement> 46 <dependencies> 47 <dependency> 48 <groupId>net.anotheria</groupId> 49 <artifactId>configureme</artifactId> 50 <version>2.4.0</version> 51 </dependency> 52 <dependency> 53 <groupId>net.anotheria</groupId> 54 <artifactId>ano-util</artifactId> 55 <version>2.1.6</version> 56 </dependency> 57 <dependency> 58 <groupId>net.anotheria</groupId> 59 <artifactId>ano-comm</artifactId> 60 <version>2.1.0</version> 61 </dependency> 62 <dependency> 63 <groupId>net.anotheria</groupId> 64 <artifactId>ano-maf</artifactId> 65 <version>2.2.0</version> 66 </dependency> 67 <dependency> 68 <groupId>net.anotheria</groupId> 69 <artifactId>ano-tags</artifactId> 70 <version>2.1.1</version> 71 </dependency> 72 <dependency> 73 <groupId>net.anotheria</groupId> 74 <artifactId>ano-plass</artifactId> 75 <version>2.1.1</version> 76 </dependency> 77 <dependency> 78 <groupId>net.anotheria</groupId> 79 <artifactId>ano-prise</artifactId> 80 <version>2.1.2</version> 81 </dependency> 82 <dependency> 83 <groupId>net.anotheria</groupId> 84 <artifactId>ano-net</artifactId> 85 <version>2.1.0</version> 86 </dependency> 87 <dependency> 88 <groupId>commons-codec</groupId> 89 <artifactId>commons-codec</artifactId> 90 <version>1.5</version> 91 </dependency> 92 <dependency> 93 <groupId>org.aspectj</groupId> 94 <artifactId>aspectjrt</artifactId> 95 <version>${aspectj.version}</version> 96 </dependency> 97 <dependency> 98 <groupId>org.aspectj</groupId> 99 <artifactId>aspectjtools</artifactId> 100 <version>${aspectj.version}</version> 101 </dependency> 102 <dependency> 103 <groupId>com.google.code.gson</groupId> 104 <artifactId>gson</artifactId> 105 <version>2.2.4</version> 106 </dependency> 107 <!-- jersey --> 108 <dependency> 109 <groupId>com.sun.jersey</groupId> 110 <artifactId>jersey-client</artifactId> 111 <version>${jersey-version}</version> 112 </dependency> 113 <dependency> 114 <groupId>com.sun.jersey</groupId> 115 <artifactId>jersey-server</artifactId> 116 <version>${jersey-version}</version> 117 </dependency> 118 <dependency> 119 <groupId>com.sun.jersey</groupId> 120 <artifactId>jersey-servlet</artifactId> 121 <version>${jersey-version}</version> 122 </dependency> 123 <dependency> 124 <groupId>com.sun.jersey</groupId> 125 <artifactId>jersey-json</artifactId> 126 <version>${jersey-version}</version> 127 </dependency> 128 <!-- jax-rs --> 129 <dependency> 130 <groupId>javax.ws.rs</groupId> 131 <artifactId>jsr311-api</artifactId> 132 <version>1.1.1</version> 133 </dependency> 134 <dependency> 135 <groupId>org.hamcrest</groupId> 136 <artifactId>hamcrest-all</artifactId> 137 <version>1.3</version> 138 </dependency> 139 </dependencies> 140 </dependencyManagement> 141 <build> 142 <pluginManagement> 143 <plugins> 144 <plugin> 145 <groupId>org.codehaus.mojo</groupId> 146 <artifactId>aspectj-maven-plugin</artifactId> 147 <version>${aspectj-maven-plugin.version}</version> 148 <configuration> 149 <complianceLevel>${aspectj-maven-plugin.complianceLevel}</complianceLevel> 150 <source>${source-version}</source> 151 <target>${target-version}</target> 152 </configuration> 153 <dependencies> 154 <dependency> 155 <groupId>org.aspectj</groupId> 156 <artifactId>aspectjrt</artifactId> 157 <version>${aspectj.version}</version> 158 </dependency> 159 <dependency> 160 <groupId>org.aspectj</groupId> 161 <artifactId>aspectjtools</artifactId> 162 <version>${aspectj.version}</version> 163 </dependency> 164 </dependencies> 165 <executions> 166 <execution> 167 <goals> 168 <goal>compile</goal> 169 <goal>test-compile</goal> 170 </goals> 171 <configuration> 172 <source>${source-version}</source> 173 <target>${target-version}</target> 174 </configuration> 175 </execution> 176 </executions> 177 </plugin> 178 </plugins> 179 </pluginManagement> 180 </build> 181 </project>