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
environments { | |
local { | |
serverName = 'localVM' | |
wls { | |
adminurl = 't3://localhost:7001' | |
user = 'weblogic' | |
password = 'welcome1' | |
targets = 'AdminServer' | |
upload = 'true' | |
verbose = 'true' |
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
@rem ************************************************************************* | |
@rem This script is used to set up your environment for development. | |
@rem It sets the following variables: | |
@rem | |
@rem | |
@rem JAVA_HOME - Location of the version of Java that you want to use for development. | |
@rem This variable must point to the root directory of a JDK | |
@rem installation and will be set for you by the installer. | |
@rem PATH - Adds the JDK and tool directories to the system path. | |
@rem CLASSPATH - Adds the JDK and tool jars to the classpath. |
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
# ************************************************************************* | |
# This script is used to set up your environment for development. | |
# It sets the following variables: | |
# | |
# | |
# JAVA_HOME - Location of the version of Java that you want to use for development. | |
# This variable must point to the root directory of a JDK | |
# installation and will be set for you by the installer. | |
# PATH - Adds the JDK and tool directories to the system path. | |
# CLASSPATH - Adds the JDK and tool jars to the classpath. |
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
buildscript{ | |
repositories{ | |
mavenCentral() | |
} | |
dependencies{ | |
classpath 'com.atlassian.jgitflow:jgit-flow-core:0.9' | |
} | |
} | |
import com.atlassian.jgitflow.core.* |
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
# Create a template .jar of an existing domain | |
# Open an existing domain | |
readDomain(domainDirName) | |
# Write the domain configuration information to a domain template | |
writeTemplate(templateName) | |
closeDomain(templateName) |
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
# unpack.py: convert from unpack command to wlst script | |
# This script shows how to convert from the unpack command to a wlst script. | |
# Note that the domain and template values, and the options to setOption, must be single-quoted | |
# Specify the template that you want to use | |
readTemplate('c:\wls9\user_templates\wlst_wls_template.jar') | |
# If you specified the -username and -password option in the unpack command, | |
# Specify them here. Otherwise, delete these lines` | |
# Note that the domain_name field here is just the name of the domain, not the full path as specified in writeDomain below |
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
<target name="bounce-svc" description="Bounce service on HOST"> | |
<bounceService server="${j2ee.host}" service="beasvc ${weblogic.domain.name}_${weblogic.deploy.target}" /> | |
</target> | |
<macrodef name="bounceService"> | |
<attribute name="server" /> | |
<attribute name="service" /> | |
<sequential> |
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
set verify off | |
define obj_name = '&1'; | |
column outline format a105 heading 'Error Listing'; | |
break on err_text skip 2; | |
set linesize 105; | |
set pagesize 0; | |
set pause off; | |
spool listerr | |
SELECT | |
decode(to_char(us.line), to_char(ue.line-7),ue.text, |
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
set head off | |
set feedback off | |
spool compile.lis | |
select 'alter package '|| owner ||'.'||object_name||' compile;' | |
from all_objects | |
where object_type like 'PACKAGE' | |
and status = 'INVALID' | |
/ | |
select 'alter package '|| owner ||'.'||object_name||' compile body;' |
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
select object_name from user_objects | |
where status = 'INVALID' | |
/ |
OlderNewer