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
12:17:51,117 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "scheduling-assistant.war" | |
12:18:00,196 WARN [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry activation.jar in "/C:/java/jboss/jboss-as-7.1.1.Final/bin/content/scheduling-assistant.war/WEB-INF/lib/mail-1.4.1.jar" does not point to a valid jar for a Class-Path reference. | |
12:18:00,201 WARN [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry xml-apis.jar in "/C:/java/jboss/jboss-as-7.1.1.Final/bin/content/scheduling-assistant.war/WEB-INF/lib/serializer-2.7.1.jar" does not point to a valid jar for a Class-Path reference. | |
12:18:00,206 WARN [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry xercesImpl.jar in "/C:/java/jboss/jboss-as-7.1.1.Final/bin/content/scheduling-assistant.war/WEB-INF/lib/xalan-2.7.1.jar" does not point to a valid jar for a Class-Path reference. | |
12:18:00,216 WARN [org.jboss.as.server.deployment] (MSC serv |
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"?> | |
<datasources xmlns="http://www.jboss.org/ironjacamar/schema"> | |
<datasource | |
jndi-name="java:jdbc/SchedulingAssistantDatabase" | |
enabled="true" | |
jta="false" use-ccm="false" | |
use-java-context="true" pool-name="SchedulingAssistantDatabasePool"> | |
<!-- | |
<connection-url>jdbc:hsqldb:${jboss.server.data.dir}${/}hypersonic${/}bwtzsvrdb</connection-url> | |
--> |
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 name="some-php-project" default="main"> | |
<!-- this script requires http://pear.php.net/package/VersionControl_Git and https://pear.php.net/package/HTTP_Request2/ --> | |
<!-- build.properties needs to contain 'nexus.username' and 'nexus.password' properties, MUST be .gitignore'd --> | |
<property file="build.properties" /> | |
<property name="primary.repository" value="[email protected]:group/some-php-project.git" override="false" /> | |
<property name="targetDir" value="target" override="true" /> | |
<property name="groupId" value="com/company/some-php-project" override="false"/> | |
<property name="repositoryHost" value="https://someartifactrepo.company.com" override="false"/> | |
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
<profiles> | |
<profile> | |
<id>disable-doclint-on-java8</id> | |
<activation> | |
<jdk>[1.8,)</jdk> | |
</activation> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> |
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
#!/bin/sh | |
echo 'this file exists solely to interact with gpg-agent, it and the .asc file can be deleted' > gpg-agent-warmup.txt | |
gpg2 -ab gpg-agent-warmup.txt | |
rm -f gpg-agent-warmup.txt gpg-agent-warmup.txt.asc |
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
#!/bin/bash | |
# Sometimes you need to move your existing git repository | |
# to a new remote repository (/new remote origin). | |
# Here are a simple and quick steps that does exactly this. | |
# | |
# Let's assume we call "old repo" the repository you wish | |
# to move, and "new repo" the one you wish to move to. | |
# | |
### Step 1. Make sure you have a local copy of all "old repo" | |
### branches and tags. |
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 name="project-name" default="main"> | |
<!-- Global Build Properties --> | |
<property file="build.properties" /> | |
<property name="repository.blessed" value="[email protected]:group/project-name.git" override="false" /> | |
<property name="targetDir" value="target" override="true" /> | |
<property name="releaseFilename" value="project-name.tar.gz" override="true" /> | |
<property name="phpunit.coverage" value="false" /> | |
<property name="maven.executable" value="mvn" override="true" /> | |
<property name="project.version" value="1.0.0-SNAPSHOT"/> |
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 | |
public class UrlRewriteFilterConfiguration { | |
/** | |
* Registers a {@link UrlRewriteFilter}. | |
* Set the init-param on the filter to use slf4j for logging. | |
* | |
* Configuration goes in src/main/resources/urlrewrite.xml (root of the classpath). | |
* | |
* @return a {@link FilterRegistrationBean} wrapping a {@link UrlRewriteFilter} | |
*/ |
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
buildscript { | |
dependencies { | |
classpath "com.github.zafarkhaja:java-semver:0.9.0" | |
} | |
} | |
plugins { | |
id "org.ajoberstar.grgit" version "1.4.2" | |
} |
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
/** | |
* Task executed by Jenkins on merges to master to confirm that we appropriately track the last | |
* released version. | |
* Typical commands executed by this Jenkins job, in order: | |
* 1. gradlew clean updateProjectLast | |
* 2. git commit -am "Tracking last released version" | |
* 3. gradlew bootRepackage uploadArchives | |
*/ | |
task updateProjectLast() { | |
doLast { |
OlderNewer