Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
477a7ad
Message
vsilva-salesforce Feb 2, 2016
cbf069f
Commiting
vsilva-salesforce Feb 2, 2016
83c605f
Ommiting
vsilva-salesforce Feb 2, 2016
a29acc1
Commiting changes
vsilva-salesforce Feb 2, 2016
d629dd5
Commiting changes
vsilva-salesforce Feb 2, 2016
bd371c1
Commiting changes
vsilva-salesforce Feb 2, 2016
c2f53dd
Commiting new files
vsilva-salesforce Feb 2, 2016
79162ab
Commit
vsilva-salesforce Feb 2, 2016
86ab59e
${gt.commitMessage}
vsilva-salesforce Feb 2, 2016
14f2e26
commit
vsilva-salesforce Feb 2, 2016
b2e83c2
Submiting changes automatically
vsilva-salesforce Feb 2, 2016
25732e5
Submiting changes automatically
vsilva-salesforce Feb 2, 2016
9f67ff0
Commit
vsilva-salesforce Feb 2, 2016
c094b07
Submiting changes automatically
vsilva-salesforce Feb 2, 2016
d772db4
Submiting changes automatically
vsilva-salesforce Feb 4, 2016
8995c6b
Submiting changes automatically
vsilva-salesforce Feb 4, 2016
14d46e2
Submiting changes automatically
vsilva-salesforce Feb 4, 2016
e59c3f7
Submiting changes automatically
vsilva-salesforce Feb 4, 2016
6f54a2a
Submiting changes automatically
vsilva-salesforce Feb 4, 2016
954f243
Submiting changes automatically
vsilva-salesforce Feb 4, 2016
eb8d85a
Submiting changes automatically
vsilva-salesforce Feb 4, 2016
89facf9
Submiting changes automatically
vsilva-salesforce Feb 4, 2016
7bec663
commit
vsilva-salesforce Feb 4, 2016
75e453f
commit
vsilva-salesforce Feb 4, 2016
73af322
commit
vsilva-salesforce Feb 4, 2016
8c8c43b
commit
vsilva-salesforce Feb 4, 2016
5c1ba25
message
vsilva-salesforce Feb 23, 2016
9c7f17e
message
vsilva-salesforce Feb 23, 2016
41add7a
Submiting changes automatically
vsilva-salesforce Feb 23, 2016
9488f49
message
vsilva-salesforce Feb 23, 2016
d9379b8
Submiting changes automatically
vsilva-salesforce Feb 23, 2016
e56da62
message
vsilva-salesforce Feb 23, 2016
e0f4e44
Submiting changes automatically
vsilva-salesforce Feb 25, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .settings/com.salesforce.ide.core.prefs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
#Fri May 04 17:11:17 CDT 2012
eclipse.preferences.version=1
endpointApiVersion=23.0
endpointApiVersion=33.0
endpointEnvironment=Production/Developer Edition
endpointServer=www.salesforce.com
httpsProtocol=true
ideVersion=23.0
ideVersion=33.0
keependpoint=false
metadataFormatVersion=23.0
metadataFormatVersion=33.0
namespacePrefix=
packageName=unpackaged
preferToolingDeployment=true
projectIdentifier=IDE944582383304196314
readTimeout=400
username=[email protected]
username=[email protected]
29 changes: 0 additions & 29 deletions README.md

This file was deleted.

Binary file added ant-salesforce.jar
Binary file not shown.
21 changes: 21 additions & 0 deletions build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# build.properties
#

# Specify the login credentials for the desired Salesforce organization
sf.username.target = [email protected]
sf.password.target = Mi140883iKjI5aW2gBIZzSzTzyCoZJ86
sf.username.source = [email protected]
sf.password.source = Mi140883iGYePtcouhPmY3ej74arlBdGk
#sf.sessionId = <Insert your Salesforce session id here. Use this or username/password above. Cannot use both>
sf.pkgName = /Users/vsilva/Documents/workspace/Milestones-PM/src/package.xml
sf.targetFolder = /Users/vsilva/Documents/workspace/Milestones-PM/src
#sf.zipFile = <Insert path of the zipfile to be retrieved>
#sf.metadataType = <Insert metadata type name for which listMetadata or bulkRetrieve operations are to be performed>

# Use 'https://login.salesforce.com' for production or developer edition (the default if not specified).
# Use 'https://test.salesforce.com for sandbox.
sf.serverurl = https://login.salesforce.com
gt.Directory = /Users/vsilva/Documents/workspace/Milestones-PM/
gt.commitMessage = Submiting changes automatically
sf.maxPoll = 20
# If your network requires an HTTP proxy, see http://ant.apache.org/manual/proxy.html for configuration.
86 changes: 86 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<project name="Sample usage of Salesforce Ant tasks" default="test" basedir="." xmlns:sf="antlib:com.salesforce">

<property file="build.properties"/>
<property environment="env"/>

<!-- Setting default value for username, password and session id properties to empty string
so unset values are treated as empty. Without this, ant expressions such as ${sf.username}
will be treated literally.
-->
<condition property="sf.username" value=""> <not> <isset property="sf.username"/> </not> </condition>
<condition property="sf.password" value=""> <not> <isset property="sf.password"/> </not> </condition>
<condition property="sf.sessionId" value=""> <not> <isset property="sf.sessionId"/> </not> </condition>

<taskdef resource="com/salesforce/antlib.xml" uri="antlib:com.salesforce">
<classpath>
<pathelement location="ant-salesforce.jar" />
</classpath>
</taskdef>

<!-- Retrieve an unpackaged set of metadata from your org -->
<!-- The file unpackaged/package.xml lists what is to be retrieved -->
<target name="retrieve">
<!-- Retrieve the contents into another directory -->
<sf:retrieve
username="${sf.username.source}"
password="${sf.password.source}"
sessionId="${sf.sessionId}"
serverurl="${sf.serverurl}"
maxPoll="${sf.maxPoll}"
retrieveTarget="${sf.targetFolder}"
unpackaged="${sf.pkgName}"/>
<echo message="Commiting all changes with message ${gt.commitMessage}" />
<git command="add">
<args>
<arg value="." />
</args>
</git>
<git command="commit">
<args>
<arg value="-m ${gt.commitMessage}" />
</args>
</git>
<git command="push">
</git>
</target>




<!-- Deploy the unpackaged set of metadata retrieved with retrieveUnpackaged and run tests in this organization's namespace only-->
<target name="deploy" depends="retrieve">
<sf:deploy
username="${sf.username.target}"
password="${sf.password.target}"
sessionId="${sf.sessionId}"
serverurl="${sf.serverurl}"
maxPoll="${sf.maxPoll}"
deployRoot="${sf.targetFolder}"
rollbackOnError="false"/>
</target>

<!-- Shows removing code; only succeeds if done after deployCode -->
<target name="remove">
<sf:deploy
username="${sf.username.target}"
password="${sf.password.target}"
sessionId="${sf.sessionId}"
serverurl="${sf.serverurl}"
maxPoll="${sf.maxPoll}"
deployRoot="remove"/>
</target>

<macrodef name="git">
<attribute name="command" />
<attribute name="dir" default="${gt.Directory}" />
<element name="args" optional="true" />
<sequential>
<echo message="git @{command}" />
<exec executable="git" dir="@{dir}">
<arg value="@{command}" />
<args/>
</exec>
</sequential>
</macrodef>

</project>
12 changes: 12 additions & 0 deletions remove/destructiveChanges.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
<fullName>codepkg</fullName>
<types>
<members>Candidate__c</members>
<members>Interviewer__c</members>
<members>Position__c</members>
<members>Job_Application__c</members>
<name>CustomObject</name>
</types>
<version>35.0</version>
</Package>
8 changes: 8 additions & 0 deletions remove/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
<types>
<members>*</members>
<name>CustomObject</name>
</types>
<version>35.0</version>
</Package>
Binary file modified src/.DS_Store
Binary file not shown.
82 changes: 0 additions & 82 deletions src/analyticSnapshots/Project_Status_Analytic_Snapshot.snapshot

This file was deleted.

19 changes: 0 additions & 19 deletions src/applications/Project_Mgmt_Labs.app

This file was deleted.

Loading