Skip to content

Commit

Permalink
Merge pull request #1 from apache/dev
Browse files Browse the repository at this point in the history
merge
  • Loading branch information
wgy8283335 authored Aug 13, 2019
2 parents a3f5737 + 9d0af95 commit 464cc92
Show file tree
Hide file tree
Showing 297 changed files with 8,762 additions and 2,969 deletions.
1 change: 1 addition & 0 deletions .mvn/jvm.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-Xmx1024m -XX:MaxPermSize=256m
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jdk:
before_script:
- echo "MAVEN_OPTS='-Xmx1024m -XX:MaxPermSize=256m'" > ~/.mavenrc
script:
- mvn clean install cobertura:cobertura coveralls:report -DrepoToken="${COVERALLS_REPO_TOKEN}" -Dmaven.javadoc.skip=true
- mvn clean install cobertura:cobertura coveralls:report -DrepoToken=${COVERALLS_REPO_TOKEN} -Dmaven.javadoc.skip=true

install: travis_wait 30 mvn install --quiet
3 changes: 2 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

### API Changes

1. Optimize and delete API and configuration item of sharding logicIndex.
1. Optimize and delete API and configuration item of sharding logic index.
1. Update the API of encryption to support the encrypted and plain data coexistence.

### New Features

Expand Down
504 changes: 0 additions & 504 deletions RELEASE-NOTES_ZH.md

This file was deleted.

6 changes: 3 additions & 3 deletions jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ pipeline {
}
stage('Build & Test') {
tools {
maven 'maven-3.2.1'
// use at least Apache Maven 3.3.1 to have .mvn/jvm.config support
maven 'Maven 3.6.0'
jdk 'JDK 1.8 (latest)'
}
steps {
script {
ssBuildBadge.setStatus('running')
try {
sh '''
echo "MAVEN_OPTS='-Xmx1024m -XX:MaxPermSize=256m'" > ~/.mavenrc
mvn clean install cobertura:cobertura coveralls:report -DrepoToken=${COVERALLS_REPO_TOKEN} -Prelease
mvn clean verify cobertura:cobertura coveralls:report -DrepoToken=${COVERALLS_REPO_TOKEN} -Prelease
'''
ssBuildBadge.setStatus('passing')
} catch (Exception err) {
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -746,6 +746,7 @@
<exclude>**/.git/**</exclude>
<!-- CI files -->
<exclude>**/.travis.yml</exclude>
<exclude>**/.mvn/jvm.config</exclude>
<!-- GitHub files -->
<exclude>**/.github/**</exclude>
<!-- document files -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,20 @@

package org.apache.shardingsphere.core.rule;

import org.apache.shardingsphere.api.config.RuleConfiguration;

/**
* Base rule.
*
* @author zhangliang
* @author panjuan
*/
public interface BaseRule {

/**
* Get rule configuration.
*
* @return rule configuration
*/
RuleConfiguration getRuleConfiguration();
}
Loading

0 comments on commit 464cc92

Please sign in to comment.