This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'java' | |
apply plugin: 'maven-publish' | |
apply plugin: 'distribution' | |
archivesBaseName = 'my-component' | |
group = 'io.eddumelendez.gradle' | |
version = '1.0' | |
sourceCompatibility = 1.7 | |
task sourcesJar(type: Jar) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.0</version> | |
<configuration> | |
<target>${java-version}</target> | |
<source>${java-version}</source> | |
</configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ldap:config name="ldapConf" url="${ldap.url}" authDn="${ldap.user}" | |
authPassword="${ldap.password}" authentication="simple"> | |
<ldap:extended-configuration> | |
<ldap:extended-configuration key="java.naming.ldap.factory.socket">org.mule.module.ldap.security.BypassTrustSSLSocketFactory | |
</ldap:extended-configuration> | |
<ldap:extended-configuration key="java.naming.security.protocol">ssl | |
</ldap:extended-configuration> | |
</ldap:extended-configuration> | |
</ldap:config> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mvn jboss-as:deploy -Dhostname=127.0.0.1 -Dport=9999 -Dversion=7.1.0.Final -Dserver.group=cluster_name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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"> | |
<profiles> | |
<profile> | |
<id>prod</id> | |
<build> | |
<plugins> | |
<plugin> | |
<artifactId>maven-antrun-plugin</artifactId> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd" > | |
<generatorConfiguration> | |
<!-- Ubicación del JAR JDBC del gestor de Base de datos a usar --> | |
<classPathEntry location="ojdbc5-11.2.0.3.jar" /> | |
<context id="context1"> | |
<!-- No generamos los comentarios --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>org.codehaus.sonar.plugins</groupId> | |
<artifactId>sonar-plugin-cobertura</artifactId> | |
<version>1.5M3</version> | |
</dependency> |
NewerOlder