alfresco-javamelody-addon
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.bull.javamelody</groupId>
<artifactId>alfresco-javamelody-addon</artifactId>
<version>2.7.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>net.bull.javamelody</groupId>
<artifactId>alfresco-javamelody-addon</artifactId>
<version>2.7.0</version>
<name>Alfresco JavaMelody add-on</name>
<packaging>amp</packaging>
<description>JavaMelody Monitoring in Alfresco</description>
<url>https://github.com/javamelody/javamelody/wiki</url>
<inceptionYear>2013</inceptionYear>
<developers>
<developer>
<id>evernat</id>
<email>evernat@free.fr</email>
<name>Emeric Vernat</name>
</developer>
</developers>
<organization>
<name>Emeric Vernat</name>
<url>https://github.com/javamelody/javamelody/wiki</url>
</organization>
<licenses>
<license>
<name>ASL</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:javamelody/alfresco-javamelody.git</connection>
<developerConnection>scm:git:git@github.com:javamelody/alfresco-javamelody.git</developerConnection>
<url>https://github.com/javamelody/alfresco-javamelody</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GITHUB</system>
<url>https://github.com/javamelody/alfresco-javamelody/issues</url>
</issueManagement>
<ciManagement>
<system>Cloudbees</system>
<url>http://javamelody.ci.cloudbees.com/job/alfresco-javamelody</url>
</ciManagement>
<parent>
<groupId>org.alfresco.maven</groupId>
<artifactId>alfresco-sdk-parent</artifactId>
<version>2.2.0</version>
</parent>
<!-- SDK properties have sensible defaults in the SDK parent, but you can
override the properties below to use another version. For more available
properties see the alfresco-sdk-parent POM. -->
<properties>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<alfresco.version>5.2.g</alfresco.version>
<!-- The following are default values for data location and Alfresco Community
version. Uncomment if you need to change (Note. current default version for
Enterprise edition is 5.1) <alfresco.version>5.1.e</alfresco.version> <alfresco.data.location>/absolute/path/to/alf_data_dev</alfresco.data.location> -->
<!-- This control the root logging level for all apps uncomment and change,
defaults to WARN <app.log.root.level>WARN</app.log.root.level> -->
<!-- Set the enviroment to use, this controls which properties will be
picked in src/test/properties for embedded run, defaults to the 'local' environment.
See SDK Parent POM for more info. <env>local</env> -->
</properties>
<!-- Here we realize the connection with the Alfresco selected platform
(e.g.version and edition) -->
<dependencyManagement>
<dependencies>
<!-- Setup what versions of the different Alfresco artifacts that will
be used (depends on alfresco.version), so we don't have to specify version
in any of the dependency definitions in our POM. For more info see: http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Importing_Dependencies -->
<dependency>
<groupId>${alfresco.groupId}</groupId>
<artifactId>alfresco-platform-distribution</artifactId>
<version>${alfresco.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- JavaMelody dependencies -->
<dependency>
<groupId>net.bull.javamelody</groupId>
<artifactId>javamelody-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
<version>2.1.7</version>
<exclusions>
<exclusion>
<artifactId>bcmail-jdk14</artifactId>
<groupId>bouncycastle</groupId>
</exclusion>
<exclusion>
<artifactId>bcprov-jdk14</artifactId>
<groupId>bouncycastle</groupId>
</exclusion>
<exclusion>
<artifactId>bctsp-jdk14</artifactId>
<groupId>bouncycastle</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<!-- Following dependencies are needed for compiling Java code in src/main/java;
<scope>provided</scope> is inherited for each of the following; for more
info, please refer to alfresco-platform-distribution POM -->
<dependency>
<groupId>${alfresco.groupId}</groupId>
<artifactId>alfresco-repository</artifactId>
</dependency>
<!-- If we are running tests then make the H2 Scripts available Note. tests
are skipped when you are running -Pamp-to-war -->
<dependency>
<groupId>${alfresco.groupId}</groupId>
<artifactId>alfresco-repository</artifactId>
<version>${alfresco.version}</version>
<classifier>h2scripts</classifier>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<profiles>
<!-- Brings in the extra Enterprise specific repository classes, if the
'enterprise' profile has been activated, needs to be activated manually. -->
<profile>
<id>enterprise</id>
<dependencies>
<dependency>
<groupId>${alfresco.groupId}</groupId>
<artifactId>alfresco-enterprise-repository</artifactId>
<version>${alfresco.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</profile>
</profiles>
</project>