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
# ./apps/ROOT/WEB-INF/classes/org/apache/maven/archiva/security.properties | |
security.policy.password.rule.reuse.enabled=true | |
security.policy.password.previous.count=1 | |
security.policy.password.expiration.enabled=false | |
security.policy.allowed.login.attempt=15 | |
security.policy.strict.enforcement.enabled=false | |
security.policy.strict.force.password.change.enabled=false | |
security.policy.unlockable.accounts=admin |
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
# | |
# Screen resoure file by chexov@rtf-15 | |
# | |
# | |
### Caption set | |
#caption always "%{yK}|%{yK}%c| %{yK}%-Lw%{yK}%50>%{Ky}%n%f* %t%{-}%+Lw%<%{- Wk}" | |
#caption always "%d.%m.%y %0c%{=b kW} %l %{=r kd}%-Lw%{= bd}%50>%n%f* %t%{-}%+Lw%<%{- Wk}" |
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
If you always want to use the newest version, Maven has two keywords you can use as an alternative to version ranges. You should use these options with care as you are no longer in control of the plugins/dependencies you are using. | |
When you depend on a plugin or a dependency, you can use the a version value of LATEST or RELEASE. LATEST refers to the latest released or snapshot version of a particular artifact, the most recently deployed artifact in a particular repository. RELEASE refers to the last non-snapshot release in the repository. In general, it is not a best practice to design software which depends on a non-specific version of an artifact. If you are developing software, you might want to use RELEASE or LATEST as a convenience so that you don't have to update version numbers when a new release of a third-party library is released. When you release software, you should always make sure that your project depends on specific versions to reduce the chances of your build or your project being affected b |
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 versions:display-dependency-updates |
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
# get commitId | |
git log -n 1 --pretty=%H |
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
#!/bin/sh | |
set -xue | |
snapshot=`find ./target/*.jar | grep -v "sources.jar" |grep -v "original"` | |
build=`echo "${snapshot}" | sed -r "s/([0-9]+[\.|-]){1,}SNAPSHOT/$BUILD_NUMBER/g"` | |
cp -v "${snapshot}" "${build}" | |
find ./target/*SNAPSHOT*.jar | xargs -I % rm "%" |
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
sudo port install libidl +universal | |
sudo ln -s /opt/local/lib/libintl.8.dylib /opt/local/lib/libintl.3.dylib |
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
#FlexPrettyPrintSettings | |
#Mon Nov 14 01:49:46 EET 2011 | |
ActionScript.metatagsOnSameLineAsTargetFunction=Bindable | |
Actionscript.advancedSpacesInsideParensInParameterLists=0 | |
MXML.keepRelativeIndentInMultilineComments=true | |
MXML.attrsPerLine=1 | |
MXML.blankLinesBeforeTags=0 | |
ASRearr_GroupGettersAndSettersWithStaticProperties=false | |
Actionscript.keepBlankLines=true | |
MXML.tagsDoNotFormatInside=.*\:Model,.*\:XML, |
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
alias wgethtml='wget -E -H -k -K -p -nd -o logwget.txt' |
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
### Caption set | |
#caption always "%{yK}|%{yK}%c| %{yK}%-Lw%{yK}%50>%{Ky}%n%f* %t%{-}%+Lw%<%{- Wk}" | |
#caption always "%d.%m.%y %0c%{=b kW} %l %{=r kd}%-Lw%{= bd}%50>%n%f* %t%{-}%+Lw%<%{- Wk}" | |
###Basic staff set | |
startup_message off # don't want this either. | |
bell_msg '-=[ b00m in %n ]=-' | |
defmonitor on # turn monitoring on | |
activity "activity on %n" # tell me when stuff happens! |
OlderNewer