Skip to content
Snippets Groups Projects
Commit 5dc73b82 authored by Dmitrii Novikov (EPAM)'s avatar Dmitrii Novikov (EPAM)
Browse files

Merge branch 'remove-python-project' into 'main'

Remove python project

See merge request !7
parents 63b33513 4aefbc50
No related branches found
No related tags found
1 merge request!7Remove python project
Pipeline #243843 passed
package org.opengroup.osdu.pws;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.PropertySource;
@SpringBootApplication
@PropertySource("classpath:swagger.properties")
@ComponentScan({"org.opengroup.osdu"})
public class AwsPwsApplication {
public static void main(String[] args) {
SpringApplication.run(AwsPwsApplication.class, args);
}
}
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opengroup.osdu</groupId>
<artifactId>pws-service</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>
<artifactId>pws-core</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>pws-core</name>
<description>Project and Workflow service core module</description>
<properties>
<spring-webmvc.version>5.3.22</spring-webmvc.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring-webmvc.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.0</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0</version>
<goals>
<goal>test</goal>
</goals>
</plugin>
</plugins>
</build>
</project>
package org.opengroup.osdu.pws;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.PropertySource;
@SpringBootApplication
@PropertySource("classpath:swagger.properties")
@ComponentScan({"org.opengroup.osdu"})
public class PwsApplication {
public static void main(String[] args) {
SpringApplication.run(PwsApplication.class, args);
}
}
\ No newline at end of file
[tool.poetry]
name = "project-and-workflow"
version = "0.1.0"
description = ""
authors = ["Carlos Colin <Carlos_Colin@epam.com>"]
readme = "README.md"
packages = [
{ include = "app" }
]
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.109.0"
uvicorn = { extras = ["standard"], version = "^0.27.0.post1" }
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
[tool.poetry.group.dev.dependencies]
black = "^24.1.1"
isort = "^5.13.2"
pre-commit = "^3.6.0"
pylint = "^3.0.3"
flake8 = "^7.0.0"
mypy = "^1.8.0"
darglint = "^1.8.1"
flake8-async = "^22.11.14"
flake8-bandit = "^4.1.1"
flake8-blind-except = "^0.2.1"
flake8-broken-line = "^1.0.0"
flake8-bugbear = "^24.1.17"
flake8-cognitive-complexity = "^0.1.0"
flake8-commas = "^2.1.0"
flake8-comprehensions = "^3.14.0"
flake8-debugger = "^4.1.2"
flake8-docstrings = "^1.7.0"
flake8-eradicate = "^1.5.0"
flake8-functions = "^0.0.8"
flake8-isort = "^6.1.1"
flake8-logging-format = "^0.9.0"
flake8-polyfill = "^1.0.2"
flake8-rst-docstrings = "^0.3.0"
flake8-string-format = "^0.3.0"
mccabe = "^0.7.0"
pep8-naming = "^0.13.3"
pycodestyle = "^2.11.1"
pydocstyle = "^6.3.0"
pyflakes = "^3.2.0"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
"""Docstring."""
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment