| 组织ID: |
com.alkacon |
| 项目ID: |
acacia-editor-client |
| 版本: |
1.0.1 |
| 最后修改时间: |
2019-10-24 00:35:09 |
| 包类型: |
jar |
| 标题: |
acacia-editor-client |
| 描述: |
acacia-editor-client is the GWT javaScript-Library for OpenCms to direct inline-edit Content.
OpenCms is a Content Management System that is based on Open
Source Software. Complex Intranet and Internet websites can be
quickly and cost-effectively created, maintained and managed.
|
| 相关URL: |
http://alkacon.com |
| 大小: |
109.27KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.alkacon</groupId>
<artifactId>acacia-editor-client</artifactId>
<version>1.0.1</version>
</dependency>
|
| Gradle引入代码: |
com.alkacon:acacia-editor-client:1.0.1
|
| 下载Jar包: |
|
| POM文件内容: |
<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>com.alkacon</groupId>
<artifactId>acacia-editor-client</artifactId>
<packaging>jar</packaging>
<version>1.0.1</version>
<name>acacia-editor-client</name>
<url>http://alkacon.com</url>
<description>
acacia-editor-client is the GWT javaScript-Library for OpenCms to direct inline-edit Content.
OpenCms is a Content Management System that is based on Open
Source Software. Complex Intranet and Internet websites can be
quickly and cost-effectively created, maintained and managed.
</description>
<inceptionYear>2012</inceptionYear>
<developers>
<developer>
<name>Alexander Kandzior</name>
<id>a.kandzior</id>
<email>a.kandzior@alkacon.com</email>
<organization>Alkacon Software GmbH</organization>
<organizationUrl>http://www.alkacon.com</organizationUrl>
<timezone>+1</timezone>
</developer>
</developers>
<contributors>
</contributors>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE 2.1</name>
<url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<!-- Convenience property to set the GWT version -->
<gwtVersion>2.5.0</gwtVersion>
<!-- ******************************************************** -->
<!-- Default configuration for compiler source and target JVM -->
<!-- ******************************************************** -->
<maven.compile.source>1.5</maven.compile.source>
<maven.compile.target>1.5</maven.compile.target>
<!-- ***************************** -->
<!-- Define encoding for filtering -->
<!-- ***************************** -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.sourceEncoding>UTF-8</project.reporting.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- GWT generated sources -->
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
</properties>
<prerequisites>
<maven>2.2.1</maven>
</prerequisites>
<build>
<defaultGoal>install</defaultGoal>
<sourceDirectory>${project.basedir}/src-gwt</sourceDirectory>
<testSourceDirectory>${project.basedir}/test</testSourceDirectory>
<resources>
<resource>
<directory>${project.basedir}/src-gwt</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<testResources>
<testResource>
<directory>${project.basedir}/test</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<!-- jar-no-fork: This goal functions the same as the jar goal but does not fork -->
<!-- the build and is suitable for attaching to the build lifecycle. -->
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<source>${maven.compile.source}</source>
<encoding>${project.build.sourceEncoding}</encoding>
<docEncoding>${project.reporting.outputEncoding}</docEncoding>
<detectLinks>false</detectLinks>
<detectOfflineLinks>true</detectOfflineLinks>
<failOnError>false</failOnError>
<quiet>true</quiet>
<links>
<link>http://docs.oracle.com/javase/1.5.0/docs/api/</link>
</links>
<maxmemory>512m</maxmemory>
</configuration>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>${maven.compile.source}</source>
<target>${maven.compile.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<X-Compile-Source-JDK>1.5</X-Compile-Source-JDK>
<X-Compile-Target-JDK>1.5</X-Compile-Target-JDK>
<build-time>${maven.build.timestamp}</build-time>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version>
<configuration>
<!-- Excluede GWT TEsts -->
<excludes>
<exclude>**/TestForms*</exclude>
</excludes>
</configuration>
</plugin>
<!-- GWT Maven Plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwtVersion}</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test</goal>
<goal>generateAsync</goal>
</goals>
</execution>
</executions>
<!-- Plugin configuration. There are many available options, -->
<!-- see gwt-maven-plugin documentation at codehaus.org -->
<configuration>
<includes>**/TestForms*</includes>
<mode>htmlunit</mode>
<runTarget>example.html</runTarget>
<hostedWebapp>${webappDirectory}</hostedWebapp>
</configuration>
</plugin>
<!-- Copy static web files before executing gwt:run -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<executions>
<execution>
<id>copy-webapp-resources</id>
<phase>compile</phase>
<goals>
<goal>exploded</goal>
</goals>
<configuration>
<warSourceDirectory>${basedir}/war</warSourceDirectory>
<webappDirectory>${webappDirectory}</webappDirectory>
</configuration>
</execution>
<execution>
<id>copy-webapp-resources-for-unittest</id>
<phase>compile</phase>
<goals>
<goal>exploded</goal>
</goals>
<configuration>
<warSourceDirectory>${basedir}/war</warSourceDirectory>
<webappDirectory>${project.build.directory}/www-test</webappDirectory>
</configuration>
</execution>
<execution>
<id>copy-unittest-webapp-resources</id>
<phase>compile</phase>
<goals>
<goal>exploded</goal>
</goals>
<configuration>
<warSourceDirectory>${basedir}/www-test</warSourceDirectory>
<webappDirectory>${project.build.directory}/www-test</webappDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- ########################### -->
<!-- SCOPE runtime (not required for compilation but required for execution) -->
<!-- ########################### -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwtVersion}</version>
<scope>runtime</scope>
</dependency>
<!-- ########################### -->
<!-- SCOPE compile -->
<!-- ########################### -->
<dependency>
<groupId>com.alkacon</groupId>
<artifactId>acacia-editor-shared</artifactId>
<version>1.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.alkacon</groupId>
<artifactId>acacia-editor-shared</artifactId>
<version>1.0.1</version>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.alkacon</groupId>
<artifactId>alkacon-vie-wrapper-client</artifactId>
<version>1.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.alkacon</groupId>
<artifactId>alkacon-vie-wrapper-client</artifactId>
<version>1.0.1</version>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.alkacon</groupId>
<artifactId>alkacon-geranium-client</artifactId>
<version>1.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.alkacon</groupId>
<artifactId>alkacon-geranium-client</artifactId>
<version>1.0.1</version>
<classifier>sources</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version>
<scope>compile</scope>
</dependency>
<!-- ########################### -->
<!-- SCOPE Test -->
<!-- ########################### -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtVersion}</version>
<classifier>sources</classifier>
<scope>test</scope>
</dependency>
</dependencies>
<scm>
<connection>scm:git:git@github.com/brabenetz/acacia-editor.git</connection>
<developerConnection>scm:git:git@github.com/brabenetz/acacia-editor.git</developerConnection>
<url>https://github.com/brabenetz/acacia-editor</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com/alkacon/acacia/Acacia.gwt.xml
com/alkacon/acacia/AcaciaBare.gwt.xml
com/alkacon/acacia/AcaciaExample.gwt.xml
com.alkacon.acacia.client.AttributeDNDController$1.class
com.alkacon.acacia.client.AttributeDNDController.class
com.alkacon.acacia.client.AttributeHandler.class
com.alkacon.acacia.client.ChoiceMenuEntryBean.class
com/alkacon/acacia/client/css/attributeChoice.css
com/alkacon/acacia/client/css/bottom-left-corner-error.png
com/alkacon/acacia/client/css/bottom-left-corner.png
com/alkacon/acacia/client/css/errorImageSmall.png
com/alkacon/acacia/client/css/form.css
com.alkacon.acacia.client.css.I_LayoutBundle$I_AttributeChoice.class
com.alkacon.acacia.client.css.I_LayoutBundle$I_Style.class
com.alkacon.acacia.client.css.I_LayoutBundle$I_Widgets.class
com.alkacon.acacia.client.css.I_LayoutBundle.class
com/alkacon/acacia/client/css/top-left-corner-error.png
com/alkacon/acacia/client/css/top-left-corner.png
com.alkacon.acacia.client.EditorBase$1.class
com.alkacon.acacia.client.EditorBase$2.class
com.alkacon.acacia.client.EditorBase$3.class
com.alkacon.acacia.client.EditorBase$4.class
com.alkacon.acacia.client.EditorBase$5.class
com.alkacon.acacia.client.EditorBase.class
com.alkacon.acacia.client.example.Example$1.class
com.alkacon.acacia.client.example.Example$2.class
com.alkacon.acacia.client.example.Example$3.class
com.alkacon.acacia.client.example.Example.class
com.alkacon.acacia.client.HighlightingHandler.class
com.alkacon.acacia.client.I_AttributeHandler.class
com.alkacon.acacia.client.I_EntityRenderer.class
com.alkacon.acacia.client.I_InlineFormParent.class
com.alkacon.acacia.client.I_WidgetFactory.class
com.alkacon.acacia.client.I_WidgetService.class
com.alkacon.acacia.client.Renderer$1.class
com.alkacon.acacia.client.Renderer$TabSizeHandler$1.class
com.alkacon.acacia.client.Renderer$TabSizeHandler.class
com.alkacon.acacia.client.Renderer$WidgetChangeHandler.class
com.alkacon.acacia.client.Renderer.class
com.alkacon.acacia.client.RootHandler.class
com.alkacon.acacia.client.ui.AttributeChoiceWidget$1.class
com.alkacon.acacia.client.ui.AttributeChoiceWidget$2.class
com.alkacon.acacia.client.ui.AttributeChoiceWidget$AttributeChoiceWidgetUiBinder.class
com.alkacon.acacia.client.ui.AttributeChoiceWidget.class
com/alkacon/acacia/client/ui/AttributeChoiceWidget.ui.xml
com.alkacon.acacia.client.ui.AttributeValueView$1.class
com.alkacon.acacia.client.ui.AttributeValueView$2.class
com.alkacon.acacia.client.ui.AttributeValueView$3.class
com.alkacon.acacia.client.ui.AttributeValueView$AttributeValueUiBinder.class
com.alkacon.acacia.client.ui.AttributeValueView$ChangeHandler.class
com.alkacon.acacia.client.ui.AttributeValueView$MoveHandle.class
com.alkacon.acacia.client.ui.AttributeValueView.class
com/alkacon/acacia/client/ui/AttributeValueView.ui.xml
com.alkacon.acacia.client.ui.ChoiceMenuEntryWidget$1.class
com.alkacon.acacia.client.ui.ChoiceMenuEntryWidget.class
com.alkacon.acacia.client.ui.ChoiceMenuHandler$1.class
com.alkacon.acacia.client.ui.ChoiceMenuHandler.class
com.alkacon.acacia.client.ui.ChoiceSubmenu$1.class
com.alkacon.acacia.client.ui.ChoiceSubmenu.class
com.alkacon.acacia.client.ui.SimpleButton.class
com.alkacon.acacia.client.ui.ValuePanel.class
com.alkacon.acacia.client.ui.WidgetBase.class
com.alkacon.acacia.client.ValidationContext.class
com.alkacon.acacia.client.ValidationHandler$1.class
com.alkacon.acacia.client.ValidationHandler$ValidationTimer.class
com.alkacon.acacia.client.ValidationHandler.class
com.alkacon.acacia.client.widgets.A_EditWidget.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
gwt-servlet-${gwtVersion}.jar
/com.google.gwt/gwt-servlet/${gwtVersion}
查看gwt-servlet所有版本文件
acacia-editor-shared-1.0.1.jar
/com.alkacon/acacia-editor-shared/1.0.1
查看acacia-editor-shared所有版本文件
acacia-editor-shared-1.0.1.jar
/com.alkacon/acacia-editor-shared/1.0.1
查看acacia-editor-shared所有版本文件
alkacon-vie-wrapper-client-1.0.1.jar
/com.alkacon/alkacon-vie-wrapper-client/1.0.1
查看alkacon-vie-wrapper-client所有版本文件
alkacon-vie-wrapper-client-1.0.1.jar
/com.alkacon/alkacon-vie-wrapper-client/1.0.1
查看alkacon-vie-wrapper-client所有版本文件
alkacon-geranium-client-1.0.1.jar
/com.alkacon/alkacon-geranium-client/1.0.1
查看alkacon-geranium-client所有版本文件
alkacon-geranium-client-1.0.1.jar
/com.alkacon/alkacon-geranium-client/1.0.1
查看alkacon-geranium-client所有版本文件
gwt-user-${gwtVersion}.jar
/com.google.gwt/gwt-user/${gwtVersion}
查看gwt-user所有版本文件
junit-4.7.jar
/junit/junit/4.7
查看junit所有版本文件
gwt-dev-${gwtVersion}.jar
/com.google.gwt/gwt-dev/${gwtVersion}
查看gwt-dev所有版本文件
gwt-dev-${gwtVersion}.jar
/com.google.gwt/gwt-dev/${gwtVersion}
查看gwt-dev所有版本文件
|