Skip to content

Commit 594cad6

Browse files
rebrand
1 parent 15f060b commit 594cad6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+11162
-20
lines changed

.github/workflows/ci-actions.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ on:
44
push:
55
paths-ignore:
66
- 'README.md'
7+
- 'docusaurus/**'
78
pull_request:
89
types: [assigned, opened, synchronize, reopened, ready_for_review, edited]
910
paths-ignore:
1011
- 'README.md'
12+
- 'docusaurus/**'
1113
schedule:
1214
- cron: '0 0 * * *'
1315

.github/workflows/docs-actions.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Docs
2+
3+
on:
4+
push:
5+
paths:
6+
- 'docusaurus/**'
7+
8+
jobs:
9+
gh-pages:
10+
name: "Github pages"
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Setup
15+
uses: borales/[email protected]
16+
with:
17+
cmd: --cwd docusaurus/ install
18+
- name: Build
19+
uses: borales/[email protected]
20+
with:
21+
cmd: --cwd docusaurus/ build
22+
- name: Deploy
23+
uses: peaceiris/actions-gh-pages@v3
24+
with:
25+
personal_token: ${{ secrets.PERSONAL_TOKEN }}
26+
publish_dir: docusaurus/build
27+
external_repository: project-openubl/xsender-docs
28+
publish_branch: master

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ No third-party beneficiary rights are created under this Agreement.
261261

262262
Exhibit A - Form of Secondary Licenses Notice
263263

264-
"This Source Code may also be made available under the following
265-
Secondary Licenses when the conditions for such availability set forth
264+
"This Source Code may also be made available under the following
265+
Secondary Licenses when the conditions for such availability set forth
266266
in the Eclipse Public License, v. 2.0 are satisfied: {name license(s),
267267
version(s), and exceptions or additional permissions here}."
268268

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
![CI](https://github.com/project-openubl/xml-sender-ws/workflows/CI/badge.svg)
2-
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=project-openubl_xml-sender-ws&metric=alert_status)](https://sonarcloud.io/dashboard?id=project-openubl_xml-sender-ws)
3-
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fproject-openubl%2Fxml-sender-ws.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fproject-openubl%2Fxml-sender-ws?ref=badge_shield)
1+
![CI](https://github.com/project-openubl/xsender/workflows/CI/badge.svg)
2+
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=project-openubl_xsender&metric=alert_status)](https://sonarcloud.io/dashboard?id=project-openubl_xsender)
3+
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fproject-openubl%2Fxsender.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fproject-openubl%2Fxsender?ref=badge_shield)
44

55
# SUNAT Web Services
66
Libreria para realizar envíos de comprobantes electrónicos a los servicios web de la SUNAT y/o OSCE de acuerdo a lo especificado por la SUNAT:
@@ -14,12 +14,12 @@ Incluir la última version de la libreria. Si utiliza maven agrege las siguiente
1414
```
1515
<dependency>
1616
<groupId>io.github.project-openubl</groupId>
17-
<artifactId>xml-sender-ws</artifactId>
17+
<artifactId>xsender</artifactId>
1818
<version>latestVersion</version>
1919
</dependency>
2020
```
2121

22-
Puede ver la lista de todos las disponibles [aqui](https://mvnrepository.com/artifact/io.github.project-openubl/xml-sender-ws).
22+
Puede ver la lista de todos las disponibles [aqui](https://mvnrepository.com/artifact/io.github.project-openubl/xsender).
2323

2424
### BillService:sendBill
2525
Utilizado para enviar:
@@ -242,4 +242,4 @@ mipaquete.MyErrorHandlerFactory
242242

243243
- [Eclipse Public License - v 2.0](./LICENSE)
244244

245-
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fproject-openubl%2Fxml-sender-ws.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fproject-openubl%2Fxml-sender-ws?ref=badge_large)
245+
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fproject-openubl%2Fxsender.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fproject-openubl%2Fxsender?ref=badge_large)

docusaurus/.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
12+
.DS_Store
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*

docusaurus/README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Website
2+
3+
This website is built using [Docusaurus 2](https://v2.docusaurus.io/), a modern static website generator.
4+
5+
### Installation
6+
7+
```
8+
$ yarn
9+
```
10+
11+
### Local Development
12+
13+
```
14+
$ yarn start
15+
```
16+
17+
This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.
18+
19+
### Build
20+
21+
```
22+
$ yarn build
23+
```
24+
25+
This command generates static content into the `build` directory and can be served using any static contents hosting service.
26+
27+
### Deployment
28+
29+
```
30+
$ GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy
31+
```
32+
33+
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

docusaurus/babel.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
3+
};

docusaurus/blog/2019-05-28-hola.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
id: hola
3+
title: Hola
4+
author: Gao Wei
5+
author_title: Docusaurus Core Team
6+
author_url: https://github.com/wgao19
7+
author_image_url: https://avatars1.githubusercontent.com/u/2055384?v=4
8+
tags: [hola, docusaurus]
9+
---
10+
11+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
id: hello-world
3+
title: Hello
4+
author: Endilie Yacop Sucipto
5+
author_title: Maintainer of Docusaurus
6+
author_url: https://github.com/endiliey
7+
author_image_url: https://avatars1.githubusercontent.com/u/17883920?s=460&v=4
8+
tags: [hello, docusaurus]
9+
---
10+
11+
Welcome to this blog. This blog is created with [**Docusaurus 2 alpha**](https://v2.docusaurus.io/).
12+
13+
<!--truncate-->
14+
15+
This is a test post.
16+
17+
A whole bunch of other information.

docusaurus/blog/2019-05-30-welcome.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
id: welcome
3+
title: Welcome
4+
author: Yangshun Tay
5+
author_title: Front End Engineer @ Facebook
6+
author_url: https://github.com/yangshun
7+
author_image_url: https://avatars0.githubusercontent.com/u/1315101?s=400&v=4
8+
tags: [facebook, hello, docusaurus]
9+
---
10+
11+
Blog features are powered by the blog plugin. Simply add files to the `blog` directory. It supports tags as well!
12+
13+
Delete the whole directory if you don't want the blog features. As simple as that!

0 commit comments

Comments
 (0)