This file contains 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> |
This file contains 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 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 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 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 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 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 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
I, Eddú Meléndez, have read and do accept the MuleSoft Contributor Agreement | |
at http://www.mulesoft.org/legal/contributor-agreement.html | |
Accepted on Thu Jan 22 2015 00:25:47 GMT-0500 (PET) |
This file contains 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
@Configuration | |
@EnableJpaRepositories(basePackages = "io.eddumelendez.springdatajpa.repository1") | |
public class FirstConfiguration { | |
@ConfigurationProperties(prefix = "datasource.postgres") | |
@Bean | |
@Primary | |
public DataSource postgresDataSource() { | |
return DataSourceBuilder.create(). | |
build(); |
This file contains 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.tomcat.maven</groupId> | |
<artifactId>tomcat7-maven-plugin</artifactId> | |
<version>2.2</version> | |
<configuration> | |
<server>tomcat</server> | |
<path>/hello-webapp</path> | |
<update>true</update> |
OlderNewer