debugger-extension
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.lucee</groupId>
<artifactId>debugger-extension</artifactId>
<version>3.0.0.4</version>
</dependency><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://www.w3.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.lucee</groupId>
<artifactId>debugger-extension</artifactId>
<version>3.0.0.4</version>
<packaging>pom</packaging>
<name>Debugger Extension</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<id>FA79A831-7D30-4D8A-B7F300DECEB00001</id>
<bundlename>debugger.extension</bundlename>
<mvnGroupId>org.lucee</mvnGroupId>
<mvnGroupPath>org/lucee</mvnGroupPath>
<mvnArtifactId>debugger</mvnArtifactId>
<mvnVersion>${project.version}</mvnVersion>
<filename>debugger-extension</filename>
<luceeCoreVersion>7.1.0.43</luceeCoreVersion>
<releaseType>server</releaseType>
<label>Debugger Extension</label>
<camelname>Debugger</camelname>
<release.url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</release.url>
<snapshot.url>https://oss.sonatype.org/content/repositories/snapshots/</snapshot.url>
</properties>
<scm>
<url>https://github.com/lucee/extension-debugger</url>
<connection>scm:git:git://github.com/lucee/extension-debugger.git</connection>
<developerConnection>scm:git:git@github.com:lucee/extension-debugger.git</developerConnection>
<tag>${project.version}</tag>
</scm>
<licenses>
<license>
<name>The GNU Lesser General Public License, Version 2.1</name>
<url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>softwareCobbler</id>
<name>David Rogers</name>
<email>davidwrogers2@gmail.com</email>
<roles>
<role>Original Developer</role>
</roles>
</developer>
<developer>
<id>zspitzer</id>
<name>Zac Spitzer</name>
<email>zac@lucee.org</email>
<organization>Lucee Association Switzerland</organization>
<organizationUrl>http://lucee.org</organizationUrl>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<description>Debug Adapter Protocol (DAP) debugger extension for Lucee CFML. Set breakpoints, inspect variables, and step through code in VS Code and other DAP-compatible IDEs.</description>
<url>https://github.com/lucee/extension-debugger</url>
<organization>
<name>Lucee Association Switzerland</name>
<url>https://lucee.org</url>
</organization>
<issueManagement>
<system>JIRA</system>
<url>https://luceeserver.atlassian.net/browse/LDEV</url>
</issueManagement>
<inceptionYear>2021</inceptionYear>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<files>
<file>${project.build.directory}/${project.artifactId}-${project.version}.lex</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<ant antfile="build.xml" target="clean">
<property name="bundleversion" value="${project.version}"/>
<property name="bundlename" value="${bundlename}"/>
<property name="filename" value="${project.artifactId}"/>
<property name="groupId" value="${project.groupId}"/>
<property name="artifactId" value="${project.artifactId}"/>
<property name="id" value="${id}"/>
<property name="luceeCoreVersion" value="${luceeCoreVersion}"/>
<property name="releaseType" value="${releaseType}"/>
<property name="label" value="${label}"/>
<property name="description" value="${project.description}"/>
<property name="camelname" value="${camelname}"/>
<property name="maven.goal" value="${goal}"/>
<property name="mvnGroupId" value="${mvnGroupId}"/>
<property name="mvnGroupPath" value="${mvnGroupPath}"/>
<property name="mvnArtifactId" value="${mvnArtifactId}"/>
<property name="mvnVersion" value="${project.version}"/>
<property name="maven.username" value="${env.MAVEN_USERNAME}"/>
<property name="maven.password" value="${env.MAVEN_PASSWORD}"/>
<property name="gpg.passphrase" value="${env.GPG_PASSPHRASE}"/>
</ant>
<condition property="isSnapshot" value="true" else="false">
<matches string="${project.version}" pattern=".*-SNAPSHOT"/>
</condition>
<condition property="deploy.url" value="${snapshot.url}">
<istrue value="${isSnapshot}"/>
</condition>
<condition property="deploy.url" value="${release.url}">
<isfalse value="${isSnapshot}"/>
</condition>
<echo message="Deploying to URL: ${deploy.url}" />
</target>
<exportAntProperties>true</exportAntProperties>
<propertySets>
<propertySet>
<propertyRef prefix="env."/>
</propertySet>
</propertySets>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${project.build.directory}/${project.artifactId}-${project.version}.lex</file>
<type>lex</type>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>cleanup</id>
<phase>post-package</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<filesets>
<fileset>
<directory>${project.build.directory}/antrun</directory>
<includes>
<include>**/*</include>
</includes>
</fileset>
<fileset>
<directory>${project.build.directory}/archive-tmp</directory>
<includes>
<include>**/*</include>
</includes>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M1</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<file>${project.build.directory}/${project.artifactId}-${project.version}.lex</file>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<repositoryId>ossrh</repositoryId>
<url>${deploy.url}</url>
<packaging>lex</packaging>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>ossrh</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</project>