Skip to content

Commit

Permalink
Updated Action workflows, package configs and Readme for dev version
Browse files Browse the repository at this point in the history
  • Loading branch information
nick committed Feb 28, 2024
1 parent ad30bb5 commit 42d6d3d
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 22 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Publishing

on:
push:
branches-ignore: [ master ]
on: [push]

jobs:
test:
uses: ./.github/workflows/test.yml
publish:
name: Publish the client to the public registry
needs: [test]
runs-on: ubuntu-22.04
env:
MVNSETTINGS: ${{ secrets.MVNSETTINGS }}
Expand All @@ -15,11 +16,6 @@ jobs:
strategy:
matrix:
java: [ '17' ]
services:
manticoresearch-manticore:
image: manticoresearch/manticore:dev
ports:
- 9408:9308
steps:
- uses: actions/checkout@v2
- name: Set up JDK
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@

name: Testing

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
on: [workflow_call]

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ Add this dependency to your project's POM:
```xml
<dependency>
<groupId>com.manticoresearch</groupId>
<artifactId>manticoresearch</artifactId>
<version>5.0.0</version>
<artifactId>manticoresearch-dev</artifactId>
<version>5.0.1</version>
<scope>compile</scope>
</dependency>
```
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'eclipse'
apply plugin: 'com.diffplug.spotless'

group = 'com.manticoresearch'
version = '5.0.0'
version = '5.0.1'

buildscript {
repositories {
Expand Down Expand Up @@ -84,7 +84,7 @@ if(hasProperty('target') && target == 'android') {
publishing {
publications {
maven(MavenPublication) {
artifactId = 'manticoresearch'
artifactId = 'manticoresearch-dev'

from components.java
}
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
lazy val root = (project in file(".")).
settings(
organization := "com.manticoresearch",
name := "manticoresearch",
version := "5.0.0",
name := "manticoresearch-dev",
version := "5.0.1",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
Compile / javacOptions ++= Seq("-Xlint:deprecation"),
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.manticoresearch</groupId>
<artifactId>manticoresearch</artifactId>
<artifactId>manticoresearch-dev</artifactId>
<packaging>jar</packaging>
<name>manticoresearch</name>
<version>5.0.0</version>
<name>manticoresearch-dev</name>
<version>5.0.1</version>
<url>https://github.com/manticoresoftware/manticoresearch-java</url>
<description>Client for Manticore Search</description>
<scm>
Expand Down

0 comments on commit 42d6d3d

Please sign in to comment.